input field empty jquery code example
Example 1: clear input field jquery
$('#shares').val('');
Example 2: empty the value of an input in jquery
$('#field').val('');
Example 3: jquery select input with empty value
$('input:text').filter(function() { return $(this).val() == ""; });