| 1. |
What Is The Use Of Jquery Load() Method? |
|
Answer» The jQuery LOAD() method is a powerful AJAX method. The load() method loads data from a server and puts the RETURNED data into the selected element without reload the COMPLETE page. Example:The following example loads the CONTENT of the file "demo_test.txt" into a specific element $("#div1").load("demo_test.txt"); The jQuery load() method is a powerful AJAX method. The load() method loads data from a server and puts the returned data into the selected element without reload the complete page. Example:The following example loads the content of the file "demo_test.txt" into a specific element $("#div1").load("demo_test.txt"); |
|