Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

John http://www.red91.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

determine screen height

// description of your code here

..normally

   1  
   2  var h = document.documentElement.scrollHeight;


..however in some cases (safari 3) you may have to find where something is on the screen and generate the actual screen size around that
   1  
   2  if (($('lightbox_bottom').cumulativeOffset().top+30) > document.documentElement.scrollHeight) {
   3    $('sBg').style.height=$('lightbox_bottom').cumulativeOffset().top+30+'px';
   4  }
   5  else {
   6    $('sBg').style.height=document.documentElement.scrollHeight+'px';
   7  }


30 being the height of the bottom element your using to judge.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS