Get every form element value
Description
The following code shows how to get value for each form element.
Example
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w. ja v a 2 s . c om-->
$("p").append($("input").map(function() {
return $(this).val();
}).get().join(", "));
});
</script>
</head>
<body>
<p></p>
<form>
<input type="text" name="name" value="A" /> <input type="text"
name="password" value="B" />
</form>
</body>
</html>