Skip to content

Instantly share code, notes, and snippets.

@bgadrian
Created March 16, 2015 17:30
Show Gist options
  • Save bgadrian/425c0998541dfdaf182a to your computer and use it in GitHub Desktop.
Save bgadrian/425c0998541dfdaf182a to your computer and use it in GitHub Desktop.
JS Browser height
//needs jquery
$.getDocHeight = function(){
return Math.max(
$(document).height(),
$(window).height(),
/* For opera: */
document.documentElement.clientHeight
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment