FUN wih JavaScript
Take yer time with this one...

Example HTML...
<SCRIPT>
function go() {
  mywindow = window.open( 'blank.html', '', 'width=30, height=30' );
  change();
}

function change() {
  var x = Math.floor( 300 * Math.random() );
  var y = Math.floor( 300 * Math.random() );
  mywindow.resizeTo( x, y );
  mywindow.moveTo( x, y );
  setTimeout('change()',500);
}
</SCRIPT>
<BR><A HREF='#' onClick='go();'>GO CRAZY WINDOW!</A>

Example Results...

GO CRAZY WINDOW!

< prev | home | next>
All Materials ©2003-2007 Zach Berke