jquery get values of input box code example
Example 1: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 2: how to get the all input element id value using jquery
BY LOVE
This function will give you all the ID values of input element
$('input').each(function (i, item)
{
alert(item.id);
});