If I have a input textbox like this:
How can I set the value of the t
In Javascript :
document.getElementById('searchField').value = '';
In jQuery :
$('#searchField').val('');
That should do it