I need to remove some values from a hidden and text input box using JQuery, but somehow this is not working
Example:
<input type="hidden" value="abc" name="ht1" id="ht1" />
<input type="text" name="t1" id="t1" />
I use the following JQuery code to remove the values with an onclick event
$('#rt1').click(function() {
$('#t1').val();
$('#ht1').val();
});
I can I empty the contents of the input box and clear the value of the hidden field using JQuery?