i have a small issue which my text field insist to inhert the CSS of the jquery.ui, i have this textfield inside a Jquery.ui tabs script, which takes its css by add a class of the jquery ui tabs, how can i deny this to happen and make the text field doesn’t inhert the css.
here is the textfield
<input type="text" class="required" maxlength="50" value="" name="class1" />
the Jquery.ui tabs give it class when the page loads automatically
<input type="text" class="required ui-wizard-content ui-helper-reset ui-state-default" maxlength="50" value="" name="class1">
That’s how jQuery UI works. You could add the input with JavaScript on $(document).ready(). If you add the input after jQuery UI has done all it’s binding, you should be able to avoid the issue.
Probably not the best solution (client side form creation), but it should work.