jQuery

jQuery serializeArray() key value pairs

Share

jQuery serializeArray() creates an array of objects i.e. name and value pair by serializing one or more form elements or the form element itself.

jQuery serializeArray() method can act on a jQuery object which has selected individual form controls like <input>, <textarea>, and <select> etc.

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 serializeArray() method as below:

var arr = $("form").serializeArray();

Results: name:John age:30

Now want to access values created by serializeArray in JQuery?

var arr = $("form").serializeArray();
var len = arr.length;
var dataObj = {};
for (i=0; i<len; i++) {
dataObj[arr[i].name] = arr[i].value;
}
console.log(dataObj['name']); // returns John
console.log(dataObj['age']); // returns 30

Recent Posts

The Ultimate Guide to Batman Style BT Earbuds

Think of yourself as Batman while you're listening to your favorite songs. Isn't it interesting?…

32 mins ago

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.…

4 days ago