Is it possible to add/update a css class using JQuery.
I know I can add css to a DOM element using this add css rule using jquery, but I would like to add/remove fro
You cannot directly update the CSS classes in a separate css file with jQuery. You could however create a tag and add/overwrite a CSS class:
$('').appendTo('body');
When updating a CSS class, you'll need to take care the cascading order. Otherwise, it may not turn out to be the effect you are after.