Changing Css value with jquery
You can change css value with jquery an example of this is below, you can change any css value with jquery so chnage it according to your need.
by akmiecik
HTML
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<div class="content">This is a sample content.</div>
<a href="#" id="change">Click to change above div css</a>
CSS
.content{background:#ccc;}
JavaScript
jQuery(function($) {
window.onload = function() {
document.getElementById('user_name').css("autocomplete","off");
};
});