How to disable browser's autocomplete effect on all textboxes in asp.net c# application. I have tried following jquery but it doesn't works
$(document).ready(function () {
$("input[type=text]").attr("autocomplete", "off");
});
Please help me !!!