I was wondering how I check if div height exceeds 700 pixels using jQuery?
Any help would be greatly appreciated. Thanks
if ($('#mydiv').height() > 700) { // Greater than 700px in height }
alert($("#theDiv").height() > 700);
Link: http://api.jquery.com/height/