Real Web Developers DON'T EAT FOOD NEAR COMPUTERS
if ( eatfood == true ) { alert( 'You are OUTTA HERE' ); }

Example HTML...
<SCRIPT>
var counter = 0;
function eatfood() {
  counter = counter + 1;
  alert( 'You are OUTTA HERE ' + counter );
  if ( counter > 4 ) {
    alert( 'Now I am serious... you are gone!' );
    location.href = 'http://crazymonkey.4t.com/photo.html';
  }
}
</SCRIPT>
<INPUT TYPE=BUTTON VALUE='EAT FOOD' onClick="eatfood();">
<BR>Warning: Don't click this button more than 4 times unless you have NO FEAR of THE MONKEY!

Example Results...

Warning: Don't click this button more than 4 times unless you have NO FEAR of THE MONKEY!

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