After a lot of struggle, I have found that the solution is a lot more simple that you could imagine:
Instead of autocomplete="off"
just simply use autocomplete="false"
;)
Try this...
$(document).ready(function () {
$('input').attr('autocomplete', 'false');
});