
October 26th, 2012, 11:12 AM
|
|
|
Well, you are telling the script to run when the document finishes loading, so remove that and you should be good. The Javascript is in the HEAD tags?
Javascript Code:
Original
- Javascript Code |
|
|
|
setTimeout("refreshPage();", 10000); function refreshPage() { window.location = location.href; }
|