I am experiencing a minor issue where my text field is inheriting the CSS of the jquery.ui. This textfield is located inside a Jquery.ui tabs script, which applies its CSS by adding a class
of the jquery ui tabs. How can I prevent this from happening and ensure that the text field does not inherit the CSS?
Below is the code for the textfield:
<input type="text" class="required" maxlength="50" value="" name="class1" />
The Jquery.ui tabs automatically assign a class to it when the page loads:
<input type="text" class="required ui-wizard-content ui-helper-reset ui-state-default" maxlength="50" value="" name="class1">