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.
$(selector).serialize()
<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>
$(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.
"fname=john&lname=doe"a=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.
When you are looking to apply for a mortgage the one thing that most people…
Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…
Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…
Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared Every exchange claims to have…
One of the world's busiest travel hubs, New York City relies heavily on coach bus…
Whether large scale or small scale, many businesses want to market their services or products…