|
Answer» There are different situations where developers can use AJAX. - Developers can use AJAX in security authentications for web applications for both server-side and client-side operations.
- Another well-known use of AJAX is fetching resources through the Fetch API. The traditional way of UPLOADING content requires the user to navigate to a separate upload page. The page gets reloaded once the upload completes. AJAX-based applications can upload a file WITHOUT a reload.
- Form auto-complete is another SUCCESSFUL technique that helps elevating MANY web applications. Most auto-complete search forms get created using AJAX AutoComplete for jQuery.
- Rating the content is another real-time application that leverages AJAX. The data rating gets uploaded without RELOADING the page. All credit goes to AJAX. Some famous examples of such websites are Reddit and Quora.
|