Hi,I am new to Jquery. Please excuse me if this a very basic question. how can we make 'append' wait until the previous 'append' is complete. I am appending huge amount of data so the present append should check if the previous append is complete. I am able to do this by giving all the append's independently with some time delay. But practically according to my code i may have 'n' number of appends so.. i want to do this dynamically. I tried using for ,while loop but the script is getting corrupted and the browser is crashing because the next append is starting before the previous append is complete. Please help.
|
1
|
|||||||
|
|
|
Are you appending to different elements or to a single element? If you're appending to a single element, it may be easier to concatenate all of your data and append as one chunk. Also, where is the data from? If the data is static (non ajax) then you should be able to call
|
||||||
|
|
|
Unfortunately, the jQuery See Here for some info on how to use append efficiently. What it pretty much gets at is you can try to get all of your text into one variable and simply use append once. [update] Since you have all your data in a JSON object from the get go, just do your looping through and put it all in a variable, then just append that once you're finished. [/update] |
|||
|
|
|
|
}); |
||
|
|
Guys Problem solved !!!The Below Solution is working on all the browsers especially IE6. The response time in Firefox is 10 sec. but in IE6 it is 2 min 30 sec. I HATE IE6. [no offense]. Thank you all for your answers.
}); |
||||
|
|
|
I can give you some hints on how to improve your code.
Can become:
You will accomplish:
This means you can also:
becomes (no for loop!):
And:
May become:
Edit: these changes are suggested to improve your algorithm performance, while maintaining the full feature it provides. |
|||
|
|
