Thursday, June 30, 2005

reloading the page while resizing
You know that effect from netscrape 4.x (in case you miss it)

cat onResize.html


<head>

<script language="JavaScript">



window.onresize= message;



function message() {

  window.location.href = window.location.href;

}



</script>




</head>

<body>



Please resize the window.



</body>

</html>

No comments: