jQuery(document).ready(function($){ var _width=$("#popWinHtml").width()+6; var _height=$("#popWinHtml").height()+6; function getScrollTop(){function ieTrueBody(){return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;}return $.browser.msie ? ieTrueBody().scrollTop : window.pageYOffset;} function getScrollLeft(){function ieTrueBody(){return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;}return $.browser.msie ? ieTrueBody().scrollLeft : window.pageXOffset;} function getClientWidth(){function ieTrueBody(){return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;}return ieTrueBody().clientWidth;} function getClientHeight(){function ieTrueBody(){return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;}return ieTrueBody().clientHeight;} $("#popWinHtml .btnClose").click(function(){$("#popWinHtml").fadeOut(800);}); $("#popWinHtml").css("top", getClientHeight() + getScrollTop()-_height); $("#popWinHtml").css("left", getClientWidth() + getScrollLeft()-_width); //initial window.onresize=function() { $("#popWinHtml").css("top", getClientHeight() + getScrollTop()-_height); $("#popWinHtml").css("left", getClientWidth() + getScrollLeft()-_width); } window.onscroll=function() { $("#popWinHtml").css("top", getClientHeight() + getScrollTop()-_height); $("#popWinHtml").css("left", getClientWidth() + getScrollLeft()-_width); } });