Tag Archives: AJAX

Working With AJAX Loading

As a web developer you might be using AJAX for various purpose. AJAX provides a great capability of working with data through asynchronous calls. You can update, delete, add data in database or load data from the file by just making AJAX calls. If the script is huge then but of course AJAX request may take some time to load the content. But you know that the peoples are always in hurry and if they don’t see the content they will keep on clicking ‘Submit’ button again and again. This may lead the additional load on your system.

You can manage such situations by adding two more parameters in AJAX requests. They are beforeSend and complete.
Continue reading Working With AJAX Loading