jquery clear value from input field code example
Example 1: clear input jqueyr
$('#inputButtonID').val('');
Example 2: empty the value of an input in jquery
$('#field').val('');
$('#inputButtonID').val('');
$('#field').val('');