View Single Post
Old 02-04-2009, 01:50 AM   #3 (permalink)
Orc
The Prestige
 
Orc's Avatar
 
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
Orc is on a distinguished road
Default

I'll show you my code:
Code:
function ticker_req(element) {
	
	
	$.getJSON('ajax.php?tick=blogs', 
	function(data){ticker_com(element,data);});
	
}

function ticker_com(element, data) {

	$.each(data, function() { $(element).append(data.blogtitle); });
	
	setTimeout(function(){ticker_req(element);},1000);
}

That's really all I have so far. ;P The power of jQuery. <3
__________________
VillageIdiot can have my babbies ;d
Orc is offline  
Reply With Quote