jQuery -

Get/Post


Introduction to jQuery Get/Post

jQuery provides easy-to-use methods for making AJAX requests, such as $.get() and $.post(). These methods allow you to send HTTP GET and POST requests to the server and handle the responses. This tutorial covers the basics and advanced uses of the $.get() and $.post() methods with detailed examples and useful tips.


1. Basic Usage of $.get()

The $.get() method is used to perform an HTTP GET request. It fetches data from the server and can handle responses.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>Basic GET Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get("https://jsonplaceholder.typicode.com/posts/1", function(data){
                    $("#result").html(`<p>Title: ${data.title}</p>`);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates how to use the $.get() method to fetch data from a server.


2. Basic Usage of $.post()

The $.post() method is used to perform an HTTP POST request. It sends data to the server and can handle responses.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>Basic POST Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post("https://jsonplaceholder.typicode.com/posts", { title: "New Post" }, function(data){
                    $("#result").html(`<p>Post ID: ${data.id}</p>`);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to use the $.post() method to send data to a server.


3. Sending Data with $.get()

You can send data to the server with the $.get() method by passing data as an object.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>GET with Data Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get("https://jsonplaceholder.typicode.com/posts", { userId: 1 }, function(data){
                    let items = data.map(item => `<li>${item.title}</li>`).join("");
                    $("#result").html(items);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data with Params</button>
    <ul id="result"></ul>
</body>
</html>
        
    

This example demonstrates how to send data to the server using the $.get() method.


4. Sending Data with $.post()

You can send data to the server with the $.post() method by passing data as an object.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>POST with Data Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post("https://jsonplaceholder.typicode.com/posts", { title: "New Post", body: "This is the post body", userId: 1 }, function(data){
                    $("#result").html(`<p>Post ID: ${data.id}</p>`);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to send data to the server using the $.post() method.


5. Handling JSON Data with $.get()

The $.get() method can be used to fetch JSON data from the server and handle it.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>GET JSON Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get("https://jsonplaceholder.typicode.com/posts/1", function(data){
                    $("#result").html(`<p>Title: ${data.title}</p>`);
                }, "json").fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch JSON Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates how to fetch and handle JSON data using the $.get() method.


6. Handling JSON Data with $.post()

The $.post() method can be used to send data to the server and handle JSON responses.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>POST JSON Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post("https://jsonplaceholder.typicode.com/posts", JSON.stringify({ title: "New Post", body: "This is the post body", userId: 1 }), function(data){
                    $("#result").html(`<p>Post ID: ${data.id}</p>`);
                }, "json").fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send JSON Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to send data and handle JSON responses using the $.post() method.


7. Using Callbacks with $.get()

The $.get() method accepts callback functions for success, error, and complete events.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>GET Callbacks Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get("https://jsonplaceholder.typicode.com/posts/1", function(data){
                    $("#result").html(`<p>Title: ${data.title}</p>`);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                }).always(function(){
                    console.log("Request completed");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data with Callbacks</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates how to use callbacks with the $.get() method.


8. Using Callbacks with $.post()

The $.post() method accepts callback functions for success, error, and complete events.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>POST Callbacks Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post("https://jsonplaceholder.typicode.com/posts", { title: "New Post" }, function(data){
                    $("#result").html(`<p>Post ID: ${data.id}</p>`);
                }).fail(function(){
                    $("#result").html("<p>An error occurred</p>");
                }).always(function(){
                    console.log("Request completed");
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data with Callbacks</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to use callbacks with the $.post() method.


9. Error Handling in $.get()

Proper error handling in AJAX requests is crucial for a good user experience. The $.get() method provides an error callback to handle issues.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>GET Error Handling Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get("https://invalid-url.com/posts/1", function(data){
                    $("#result").html(`<p>Title: ${data.title}</p>`);
                }).fail(function(xhr, status, error){
                    $("#result").html(`<p>Error: ${status}</p>`);
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates how to handle errors in a $.get() request.


10. Error Handling in $.post()

Proper error handling in AJAX requests is crucial for a good user experience. The $.post() method provides an error callback to handle issues.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>POST Error Handling Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post("https://invalid-url.com/posts", { title: "New Post" }, function(data){
                    $("#result").html(`<p>Post ID: ${data.id}</p>`);
                }).fail(function(xhr, status, error){
                    $("#result").html(`<p>Error: ${status}</p>`);
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to handle errors in a $.post() request.


11. Caching in $.get()

You can control caching in AJAX requests to improve performance. The $.get() method allows you to disable caching.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>GET Caching Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.ajax({
                    url: "https://jsonplaceholder.typicode.com/posts/1",
                    method: "GET",
                    cache: false,
                    success: function(data){
                        $("#result").html(`<p>Title: ${data.title}</p>`);
                    },
                    error: function(){
                        $("#result").html("<p>An error occurred</p>");
                    }
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data with Caching</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates how to disable caching in a $.get() request.


12. Caching in $.post()

You can control caching in AJAX requests to improve performance. The $.post() method allows you to disable caching.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>POST Caching Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.ajax({
                    url: "https://jsonplaceholder.typicode.com/posts",
                    method: "POST",
                    cache: false,
                    data: { title: "New Post" },
                    success: function(data){
                        $("#result").html(`<p>Post ID: ${data.id}</p>`);
                    },
                    error: function(){
                        $("#result").html("<p>An error occurred</p>");
                    }
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data with Caching</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows how to disable caching in a $.post() request.


13. Advanced Usage of $.get()

The $.get() method can be combined with other jQuery methods for advanced functionality.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>Advanced GET Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.get({
                    url: "https://jsonplaceholder.typicode.com/posts/1",
                    dataType: "json",
                    beforeSend: function(){
                        console.log("Request is about to be made");
                    },
                    success: function(data){
                        $("#result").html(`<p>Title: ${data.title}</p>`);
                    },
                    error: function(){
                        $("#result").html("<p>An error occurred</p>");
                    },
                    complete: function(){
                        console.log("Request completed");
                    }
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Fetch Data with Advanced Options</button>
    <div id="result"></div>
</body>
</html>
        
    

This example demonstrates advanced usage of the $.get() method.


14. Advanced Usage of $.post()

The $.post() method can be combined with other jQuery methods for advanced functionality.

Try yourself
        
            <!DOCTYPE html>
<html>
<head>
    <title>Advanced POST Example</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        $(document).ready(function(){
            $("#btn").click(function(){
                $.post({
                    url: "https://jsonplaceholder.typicode.com/posts",
                    data: { title: "New Post" },
                    dataType: "json",
                    beforeSend: function(){
                        console.log("Request is about to be made");
                    },
                    success: function(data){
                        $("#result").html(`<p>Post ID: ${data.id}</p>`);
                    },
                    error: function(){
                        $("#result").html("<p>An error occurred</p>");
                    },
                    complete: function(){
                        console.log("Request completed");
                    }
                });
            });
        });
    </script>
</head>
<body>
    <button id="btn">Send Data with Advanced Options</button>
    <div id="result"></div>
</body>
</html>
        
    

This example shows advanced usage of the $.post() method.