Tag Archives: jquery load method not working

jQuery Ajax load Method


jQuery Ajax load method loads data from server and returns data in the specified element.


jQuery Ajax load Method Syntax

$(selector).load(url,data,function(response,status,xhr));

url(Required): Url of the file you want to load.
data(optional): Data returned from server

function : (optional): Callback is executed when the request completes.

jQuery Ajax load Example


Try it »