In my site I have not set a height for a html or a body tag. This works great on pages with lots of content, but when the content on a page is not enough to fill the page up, I want the body height to be 100%.
So I thought a bit of jQuery might help me out. I've come up with this little snippet which I thought would be adequate but unfortunately it doesn't do all too much.
if(jQuery("html").css("height") < "100%"){
jQuery("html, body").css({"height": "100%", "min-height":"100%"});
}
I'm guessing that this may be because the jQuery may not picking up the body height as a percentage, maybe just in pixels.
Would really appreciate your help.
$is just an alias forjQuery– Andy Oct 6 '11 at 19:14jQueryinstead of$, such as when in no conflict mode. – Chris Pratt Oct 6 '11 at 19:17