Remove value of input using jQuery

jquery

Solution

$('#rt1').click(function() {
    $('#t1').attr('value', '');  
    $('#ht1').attr('value', '');  
});

Problem

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(); }); ``` Can I empty the contents of the input box and clear the value of the hidden field using jQuery?

Original source