Categories: jQuery

jQuery post() Method – load data from the server

Share

jQuery post() Method loads data from the server using a HTTP POST request.

Syntax:

$(selector).post(URL, data, function(data,status,xhr), dataType)

Example of jQuery post():

$.post( "ajax-master.php", function( data ) {
$( "#result" ).html( data );
});

The above example fetches the requested HTML snippet and inserts it on the page based on ID.

Read also: Abort Ajax requests using jQuery

To ignore a result, you can use below code:

$.post( "ajax-master.php" );

You can pass additional parameters there also as below:

$.post( "ajax-master.php", { name: "John", age: "25" } );

You can pass arrays of data to the server as below:

$.post( "ajax-master.php", { 'name[]': [ "Hanse", "jane" ] } );

See jQuery reference for more details.

Recent Posts

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

19 hours ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

1 day ago

Four common mistakes when picking an internet provider

We all live on the internet; we use it for everything. Thus, when it comes…

1 day ago

What Is Commonly Misdiagnosed as Pink Eye: Understanding Eye Conditions and Their Symptoms

Introduction: Pink eye, or conjunctivitis, is a common eye condition characterized by redness and inflammation…

2 days ago

Why Flexible Financing is the Future of Small Business

Small businesses are the backbone of the economy. Still, they often face daunting hurdles when…

2 days ago

Warm Comfort: Choosing the Best Hot Water Bottle for Cozy Nights

Introduction: As the chill of winter settles in or a bout of cold weather strikes,…

3 days ago