Hi Rahul, > > I am running a PHP script which processes around 1500 records. Is > there a way in jQuery to get partial data back from the server. i.e. > get 100 finished records.
no, this is not JQuery's business (and this goes for every other Ajax-Framework too). You have to make the *server* return only 100 records. So you could call your server like this: $('div').load('http://myserver.com/script.php?page=1&pageSize=100'); $('div').load('http://myserver.com/script.php?page=2&pageSize=100'); $('div').load('http://myserver.com/script.php?page=3&pageSize=100'); ... And of course you have to adjust your script to process page/pageSize. Cheers, Arash _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/