|
Escape Button
This example shows a button which escapes when you try to click it.
04 | < title >Escape Button</ title > |
07 | < script language = "javascript" src = "EscapeButton.js" > |
11 | < input type = "button" name = "escape" value = "Click Me" onmouseover = "fun()" > |
|
04 | var i=Math.random()*25; |
05 | var j=Math.random()*40; |
10 | str= "<html><head><title>Escape Button</title><script language='javascript' src='EscapeButton.js'></script></head>" ; |
25 | str+= "<td><input type='button' name='escape' value='Click Me' onmouseover='fun()'></td>" ; |
27 | str+= "</body></html>" ; |
|
|
|