Is there a way to change the properties of a CSS class, not the element properties, using jQuery?
This is a practical example:
I have a div with class
You can remove classes and add classes dynamically
$(document).ready(function(){ $('#div').removeClass('left').addClass('right'); });