I'm facing an issue where I have multiple CSS styles applied to an input field - one default and others for customization. I want to disable the default CSS without affecting the custom ones. I attempted to remove it using:
$j('#teste').css("max-width", "");
and
$j('#teste').removeAttr("max-width");
However, both of these methods end up removing all CSS styles. Is there a way to achieve this in jQuery?