Categories: jQuery

jQuery serialize() function

Share

jQuery serialize() method creates a URL encoded text string by serializing the form values.

This values can be used in query string for making an AJAX request.

jQuery serialize() can act on a jQuery object for selecting individual form controls like <input>, <textarea>, and <select> etc.

Example of serialize:

Suppose, you have a following HTML:

<form action-xhr="#">
Name: <input type="text" name="name" value="John"><br>
Age: <input type="text" name="age" value="30"><br>
<input type="submit" name="submit" value="Submit" />
</form>

When using serialize() method as below:

var str = $( "form" ).serialize();
console.log( str );

Results: name=John&age=30

Recent Posts

Editorial Elevation: Refined Writing Services

Introduction The influence of words is more significant than ever in a digital age. Whether…

2 days ago

How to Start a Business?

How to Start a Business begins with the realization that every business has its risks and…

3 days ago

4 Tips for Businesses Struggling with Cash Flow

It's not uncommon for businesses to have financial difficulties nowadays. The fact of the matter…

3 days ago

Top Advantages of Augmented Reality in Healthcare

The success of any tech innovation depends on its share in various industries and business…

3 days ago

Recover From Google Penalties in 10 Steps in 2024

Facing Google penalties can be a daunting challenge for businesses relying on organic search traffic.…

3 days ago

What is the Future of Artificial Intelligence?

Technology, undeniably, has made our lives easier. But the advent of artificial intelligence has been…

4 days ago