I am trying to run this statement: $(\'body\').height(100); but when I check the height again, I find it unchanged!
$(\'body\').height(100);
Is there any way to change the heigh
Try using $('body').addClass('your class name'); or $('body').attr('style', 'height: 100px');
$('body').addClass('your class name');
$('body').attr('style', 'height: 100px');