jQuery ajax get method request example; In this tutorial, you will learn what is jQuery ajax $.GET method and how to use this jQuery ajax $.GET with parameters example.
jQuery Ajax $.GET Method Request with Parameters Example
The jQuery ajax $.GET method sends an asynchronous HTTP GET request from the server and gets the response from the server without reloading/refreshing the whole part of web page.
In simple words, ajax $.GET method is mainly used to send asynchronous HTTP GET request to
send or retrieve/get the data from the web server without reloading/refreshing whole part of web page. It will change or replace the data of whole web page without refreshing the web page.
Syntax of jQuery Ajax $.GET Method
jQuery.get( url [, data ] [, success ] [, dataType ] );
Parameters of jQuery Ajax $.GET Method
- url: This is the required parameter. Url is adress where, you want to send & retrieve the data.
- data: This is used to sent some to the server with request.
- success : This function to be executed when request succeeds.
- dataType: dataType is a response content or data expected from the server.
Example jQuery Ajax $.GET Method Request
This example will demonstrate you how to send data to the server along with the request using ajax $.GET method.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Ajax GET Request Example</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <style> .formClass { padding: 15px; border: 12px solid #23384E; background: #28BAA2; margin-top: 10px; } </style> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(event){ var name = "Tutsmake"; $.get('https://www.tutsmake.com/Demos/html/ajax-get-method.php', {webname: name}, function(data){ $("#output").html(data); }); }); }); </script> </head> <body> <div class="formClass"> <button type="button">Click & Get Data</button><br> <div id="output">Hello</div> </div> </body> </html>
Output
Example of jQuery Ajax $.GET Method
- In this jQuery ajax $.GET method example. The url parameter is first parameter of the $.GET method and it helps to send form data from the server using Http GET request.
- The Next parameter data is a data to submit form data in JSON format, In pair of key value.
- Next parameter “success” , When the HTTP GET request is succeeds.
- The dataType parameter is a used to receive the response from the server.
Recommended jQuery Tutorial
- jQuery | Event MouseUp By Example
- Event jQuery Mouseleave By Example
- jQuery Event Mouseenter Example
- Event jQuery MouseOver & MouseOut By Example
- keyup jquery event example
- Jquery Click Event Method with E.g.
- Event jQuery. Blur By Example
- jQuery form submit event with example
- keydown function jQuery
- List of jQuery Events Handling Methods with examples
- Jquery Selector by .class | name | #id | Elements
- How to Get the Current Page URL in jQuery
- jQuery Ajax Get() Method Example
- get radio button checked value jquery by id, name, class
- jQuery Set & Get innerWidth & innerHeight Of Html Elements
- jQuery Get Data Text, Id, Attribute Value By Example
- Set data attribute value jquery
- select multiple class in jquery
- How to Remove Attribute Of Html Elements In jQuery
- How to Checked Unchecked Checkbox Using jQuery
- jQuery removeClass & addClass On Button Click By E.g.
- To Remove whitespace From String using jQuery
- jQuery Ajax Post Method Example
- To Load/Render html Page in div Using jQuery Ajax $.load
- jQuery Ajax Loading Spinner Example