InterviewSolution
Saved Bookmarks
| 1. |
What Are The Various Ajax Functions ? |
|
Answer» Ajax allows the user to exchange data with a server and update parts of a page without reloading the ENTIRE page. Some of the functions of ajax are as follows:
For example: $.ajaxSetup({"type":"POST", "url":"ajax.php", "success":function(data){ $("#bar") .CSS("background","yellow") .html(data); } });
Ajax allows the user to exchange data with a server and update parts of a page without reloading the entire page. Some of the functions of ajax are as follows: For example: |
|