Using jQuery, how can I clear the input text after I made a click? By default, the value remains in the input field.
For example, I have an input text and the value is <
I would recommend to use this since I have the same issue which got fixed.
$('input:text').focus( function(){ $(this).val(''); });