I am trying get full height of the page in browser but I only able to get only visible portion height of the page,but I need whole visible and hidden page height.My js code are given below:
Js:
var _docHeight = (document.height !== undefined) ? document.height : document.body.offsetHeight;
Any idea how to get the full visible and also hidden page height that appear in the full browser?