0
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.

RooWM
  • 583
  • 9
  • 23

1 Answers1

7

remove the dot in the class name:

section.addClass('section-slim');

More on CSS Grammar

Community
  • 1
  • 1
Alex
  • 34,899
  • 5
  • 77
  • 90