Reputation: 583
var section = $('.section');
var width = section.width();
if (width < 960)
section.addClass('.section-slim');
Can anyone see what is wrong with this? I'm not getting the added class.
Upvotes: 0
Views: 4557
Reputation: 35409
remove the dot in the class name:
section.addClass('section-slim');
More on CSS Grammar
Upvotes: 7