Advertise here: Contact FM.


Looking for an "autosurf" type script I can install on my site.
June 10, 2007 10:09 PM   RSS feed for this thread Subscribe

Looking for an "autosurf" type script I can install on my site.

I am a PC technician, and we frequently get customers in saying that they have problems with their computers when surfing the internet, or their systems become disconnected, etc. I would like to install a script onto my site so that I can point to something like mydomain.com/surf, and it will automatically surf specific URLs that I can set up. It would probably be setup in a frame to do something like go to google.com, after 30 seconds go to yahoo.com, after 30 seconds go to cnn.com, and so forth.

I know of the "free traffic exchange" and "autohits" sites, but since I cannot control which sites these links take me to, I would like to setup something on my own site and that does not require a login or anything like that.

Thanks!
posted by ilikebike to computers & internet (3 comments total)
Would also like to add that the type of scipt used does not matter. I don't need to track anything, so just a quick and dirty script would do fine.
posted by ilikebike at 10:15 PM on June 10, 2007


Try this:

<html>
<script type="text/javascript">
var i = 0;
var sites = new Array (
"http://www.google.com",
"http://www.cnn.com",
"http://www.yahoo.com"
);

function startSurfing() {
document.getElementById("surfFrame").src=sites[i++];
if (i != sites.length) {
setTimeout(startSurfing,30000);
}
}
</script>
<body onload="startSurfing();">
<iframe width="640" height="480" id="surfFrame"></iframe>
</body>
</html>

But, why not use something like 'ping' or 'traceroute' to test connectivity?
posted by mebibyte at 12:40 AM on June 11, 2007 [1 favorite]


why not just use meta redirect, instead of javascript? :)
posted by slater at 1:34 AM on June 11, 2007


« Older which is better craigslist or ...   |   A friend and I were charging t... Newer »

You are not logged in, either login or create an account to post comments



Related Questions
How to surf discretely at work? September 6, 2008
What are some good blogs/sites that are like... February 21, 2008
Can you help me find tales of l33tness? December 5, 2007
what's your favorite internet mental break? January 12, 2006
What free hit counter do you guys recommend for a... February 9, 2005