I\'ve written out a very basic script to add/remove a class on load or when a window is resized.
I was just wondering if there was a better way of doing this or if i
You Can also Use this Method I think its very clear to follow :
$(window).on('resize', function(){ var win = $(this); if (win.width() < 514) { $('html').addClass('mobile'); } else { $('html').removeClass('mobile'); } });
Simple Method