jQuery | get() Method (original) (raw)

Last Updated : 01 Mar, 2019

In jQuery .get() method loads data from the server by using the GET HTTP request. This method returns XMLHttpRequest object.Syntax

$.get( url, [data], [callback], [type] )

Parameters

  1. url : String containing the URL at which request is to be sent
  2. data : This is an optional parameter that represents key/value pairs that will be sent to the server.
  3. callback: This optional parameter represents the function which is to be executed whenever the data is loaded successfully.
  4. type : This parameter represents type of data to be returned to the callback function i.e "xml", "script", "json", "html", "html", "jsonp", or "text".

Example: