jquery input text code example
Example 1: jquery value of input
$("#textInput").val() // To get value of element textInput
Example 2: get value of input jqueyr
var str = $("#myInput"). val();
Example 3: store the text from a form jquery
$('form').submit(function(e) {
e.preventDefault();
var input = $('#search').val();
$('p').append(input);
});