Ajax Serializearray
# jQuery serializeArray() Method
[ jQuery AJAX Methods](#)
## Example
Output the result of serializing form values as an array:
```javascript
$("button").click(function(){
x=$("form").serializeArray();
$.each(x, function(i, field){
$("#results").append(field.name + ":" + field.value + " ");
});
});
[Try it Β»](#)
* * *
## Definition and Usage
The serializeArray() method creates an array of objects (name and value) by serializing form values.
You can select one or more form elements (like input and/or textarea), or the form element itself.
* * *
## Syntax
```javascript
$(selector).serializeArray()
* * jQuery AJAX Methods](#)
YouTip