I have a JSP which has jQuery and wanted to change the action message CSS on successful submit.
So I have a page that a user enters info into, hits submit and then a span tag with the class actionMessage or actionError displays at the top of the page (After submit). Wanted to know if I could check for the element after page submit and add some CSS to make it display the way I would like it to.
<span class="actionMessage">Yeah all go!</span>
or
<span class="actionError">Try again I didn't like that :(</span>
Thanks