DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: jQuery

Encode a set of form elements as a string

Share

The serialize() method creates a text string in standard URL-encoded notation by serializing form values.

One or more form elements (input, radio, checkbox etc.) can be used as a serializing.

You can use this serialized values as a URL query string while making an AJAX request.

Syntax:

$(selector).serialize()

Below we have shown an example for form serialize:

HTML:

<form action-xhr="#" method="post">
First Name:<input type="text" name="fname" /> <br/>
Last Name:<input type="text" name="lname" /> <br/>
Quota:<input type="checkbox" name="quota" value="Yes"/><br/>
<input type="submit" name="submit" id="submit" />
</form>
<pre id="result"></pre>

JQUERY:

$(function() {
$('form').submit(function() {
$('#result').text(JSON.stringify($('form').serialize()));
return false;
});
});

Learn about JSON.stringify() for more details.

The JSON.stringify() method converts a JavaScript value to a JSON string i.e. optionally replacing the values if a replacer function is specified or optionally includes only the specified properties when a replacer array is specified.

VIEW:

The output will be:

"fname=john&lname=doe&quota=Yes"

Note: JSON.stringify converts a JavaScript value to a JavaScript Object Notation (JSON) string.

Read Also:  jQuery jQuery’s Data Method

Note that the JSON is not a completely strict subset of JavaScript with the two line terminators i.e.line separator and paragraph separator which is not needing to be escaped in JSON but needing to be escaped in JavaScript.

Jacob Frazier

Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.

Recent Posts

How To Take Control of Your Finances

In life, finances are inevitable. And more often than not, they can be overwhelming. Having…

1 day ago

Top Challenges in Property Management and How to Solve Them

The management of a property isn't solely the process of collecting rental. It also involves…

2 days ago

Personal Development: Help Yourself and Your Employees Grow

Development and progression are not only essential but often one of the main goals of…

3 days ago

Your Complete Guide to the 461 Visa: Building a Life in Australia with Your New Zealand Partner

People usually stumble onto the 461 visa when they realise there’s no simple way to…

1 week ago

10 Buyer Personas You Encounter in Your Retail Store

When you run a brick-and-mortar retail store, you encounter an array of customer personalities. From…

1 week ago

Why Roarbank Is Transforming Everyday Banking in India

In today’s digital era, people look for convenience, transparency, and genuine rewards from their financial…

1 week ago