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
It should be
$('body').css('height', '100px');
Or
$('body').height(100);