RooWM
RooWM

Reputation: 583

jquery addClass if div width is less than

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

Answers (1)

Alex
Alex

Reputation: 35409

remove the dot in the class name:

section.addClass('section-slim');

More on CSS Grammar

Upvotes: 7

Related Questions