View Single Post
  #19  
Old 05-31-2003, 07:30 AM
ramza
Fire Beetle
 
Join Date: May 2003
Posts: 2
Default

Quote:
Originally Posted by monrezz
Quote:
Originally Posted by DaGrahamster
Not that annoying, in my opinion.....there ARE reasons for Ctrl+Alt+Delete, and this is one of em
FYI Ctrl+Alt+Delete doesn't work on it, checkout this from the source:

Code:
function altf4key() { if (event.keyCode == 18 || event.keyCode == 115) alert("You are an idiot!"); } 
function ctrlkey() { if (event.keyCode == 17) alert("You are an idiot!"); } 
function delkey() { if (event.keyCode == 46) alert("You are an idiot!"); }
something wrong in this code cause it worked for me lol
Reply With Quote