jquery selector input type code example
Example 1: jquery selector input type
$("input[type=checkbox]");
Example 2: store the text from a form jquery
$('form').submit(function(e) {
e.preventDefault();
var input = $('#search').val();
$('p').append(input);
});