How to detect Height within a DIV?

Hey guys, can someone show me how to detect height within a DIV tag, and redirect? For example if the height is 0, redirect to some other specified site

I’ve read this but still no idea how to implement to redirect http://www.sitepoint.com/forums/showthread.php?t=394508

The basic technique is:


if (document.getElementById('divId').clientHeight === 0) {
    location.href = 'http://www.example.com/path/file.html';
}