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
You should actually use
$('body').css('height', '100'); and it will work.
$('body').css('height', '100');