I've been trying to find a script for a meta refresh w/ random delay (i.e., between 30 and 45 seconds). Could someone help me please?
I've created a simple javascript for you: <script> var mintime=30; //minimum time in seconds var maxtime=45; //maximum time in seconds var loc = "test.php"; //redirect url function redir() { document.location=loc; } time=(mintime+Math.random()*(maxtime-mintime))*1000; setTimeout("redir()",time); </script> Code (markup): Place it between de head tags, and change the variables however you want. That should do it.