Click to See Complete Forum and Search --> : Window Locations


hys
05-01-2003, 12:49 AM
Hello quick question...


Does anyone know if it's possible to get the windows left and top positions in both IE and NS...

thanks

DrDaMour
05-01-2003, 02:27 AM
<html>
<script language=javascript>
if(window.screenY){
alert(window.screenY);
alert(window.screenX);

}
else if(window.screenTop){
alert(window.screenLeft);
alert(window.screenTop);
}

</script>
</html>