how to clear value of input field in jquery 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('');