Currently, I am utilizing jQuery UI with a customized theme on my website. One issue I have encountered is related to an <input type="submit">
element present on the page. Due to jQuery being active, this button automatically inherits the jQuery UI appearance through the addition of CSS classes such as
ui-button ui-widget ui-state-default
.
Is there a way for me to remove these extra classes? Essentially, I would like the button to revert back to its original plain style without any additional styling.
Thank you in advance.