View Single Post
Old 11-14-2012, 10:58 AM   PM User | #6
rnd me
Senior Coder

 
rnd me's Avatar
 
Join Date: Jun 2007
Location: Urbana
Posts: 3,456
Thanks: 9
Thanked 466 Times in 450 Posts
rnd me is a jewel in the roughrnd me is a jewel in the roughrnd me is a jewel in the rough
Code:
function ping(ip) {
	clearTimeout(ping.timer);
	var i = ping.i || (ping.i = new Image);
	i.src = "http://"+url;
	ping.timer = setTimeout(function() {
		i.src = "";
	}, 9999 );
} /* end ping() */
usage:
Code:
ping ("192.168.0.1")
__________________
my site (updated 5/13)
STATS (2013/5) HTML5:90.2% MOB:14% IE7:0.5% IE8:8.6% IE9:9.8% IE10:10%
rnd me is offline   Reply With Quote