I recently came across a recommendation to create a jQuery button on top of a link for redirect purposes:
<a href="/search" class="button">My link</>
$(".button").button();
However, I noticed that if the button
class has a red foreground color defined, it will also be applied to the button.
a.button {color: red;}
Is there a way to instruct jQuery UI to use its own color scheme instead of inheriting the color styles from the main stylesheet?