Hi guys, I had more than one css applied to an input, one default and others to customize. I want to disable the css default but not the others. I tried to remove with:
$j('#teste').css("max-width", "");
and
$j('#teste').removeAttr("max-width");
Those ways, remove all css. How can I do this with jQuery?