#fcleft"> |
|
| | | | | | | | | | |
This is one of the most ingenious scripts I have ever seen. Where is it? Well believe it or not, the script is on the page and is curently working. Open a new browser window and wait 30 seconds. After 30 seconds, the browser changes it's focus back to this window. This is a must-have for your page and helps remind people with multiple browser windows who have been distracted (as us web nerds often are) that they are still viewing your page.
The source...
<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com
var time = 30
function remind() {
this.focus()
var real = time * 1000
setTimeout("remind()",real)
}
remind();
//-->
</script>
Color coding...
Change this to the number of seconds you want the browser window to wait until it focuses itself agian. I wouldn't recommed less than 30 seconds.