02-04-2009, 12:50 AM
|
#3 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
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
|
|
|
|