I read some examples of jqueryAjax. All of them showed how to call ajax onClick event and then fill a html element.
However, I want something eles.
I have a client var (MessageList). I iterate it on JS and when I get to its end I want to refill it from the server.
I wrote aspx page.
The JS is on its markup.
On the code behind I wrote a [WebMethod] called "FillMessages()" which returns string (Json).
How can I fill MessageList with the json returned from this webMethod, only when the client finish iterates the current MessageList
Thanks!