Hi,
Thanks for ur reply. i m using below code to resize the frame.
Code:
function onResultWindowResize(sName)
{
var adj = 25;
var newWinHeight = window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;
document.getElementById(sName).style.height = (newWinHeight-adj) + 'px'
}
It is working on my machine if i put the adj value by adjusting.
but on the user browser due to diffrenet resultion it is changing the frame size.
is there any other way how to over come this problem.
how to find the resultion on user machine or x and y coordinate of user browser.
Thanks
-john
Bookmarks