I'm importing jquery-ui-form.css to a page but I want to disable the width attribute of the input class (so it will revert to individual styles set on items).
I've tried:
$( "input" ).css( "width", "" );
to no avail.
I don't want to set it to 0 - just to get rid of that particular declaration.
widthattribute will automatically be overridden. Can you post a fiddle which shows the problem..css( "width", "" ). Doesn't seem to work in this instance though.