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
  • 543
  • 8
  • 23

1 Answers1

7

remove the dot in the class name:

section.addClass('section-slim');

More on CSS Grammar

Community
  • 1
  • 1
xandercoded
  • 33,178
  • 5
  • 73
  • 87