jQuery is too fast (faster than mysql)

I am developing a cakephp application that uses jquery and post methods in the background.When cakephp sends a post request in the background, a div has to refresh (or regenerate), and it has to show new content.Post method calls other php file that does a MySQL query. The div also call mysql, and select proper data from database. Problem is that div is refreshed (or regenerated) before the first mysql query. So it works ok, but how can I tell that div to "wait" a bit, until the mysql query is executed?Here is my code...\[code\]$.post('/publications/deleteItem/' + valueClicked, function(data) {}, 'html');$.post('/publications/getItems/' + val + '/' + val1, function(data) { $("#relatedNumerationPublications").empty().append(data);}, 'html');\[/code\]UPDATE:ok, so, i get where is problem. like Chetan Sastry suggested below, tryed with:\[code\]$.post('/publications/deleteItem/' + valueClicked, function() { $.post('/publications/getItems/' + val + '/' + val1, function(data) { $("#relatedNumerationPublications").empty().append(data); }, 'html');}, 'html');\[/code\]problem is cause response for '/publications/deleteItem/' + valueClicked is Page Not Found. guess that's cause of cakephp (in fact, that page exists, but cakephp returns like it's not).is it possible somehow to skip error 'Page not found', and to continue with code?
 
Back
Top