I am using jquery tab-strib. All the tab-strib have a Iframe pages. So, when main-page is loading i can able to get height of the iframe by using
document.getElementById(Id).contentWindow.document.body.scrollHeight;
(or)
$(document).height(); - in _iframe_ page.
It's working first-time. But when i click the Tabstrib again, Iframe page is loading again that time the scrollHeight or document.heightis increased. So, i need to know why it's happened ?
& How can i solve this?