I have a class in CSS
.Foo { width:20px; }
Using Jquery I would like to do something similar to this on an event:
$(\".Fo
Try using multiple styles
.FooSmall { width:20px; } .FooBig { width:40px; } $('#theTarget').removeClass('FooSmall').addClass('FooBig');