I’ve a few inputs and I want to clear their values after clicking. How to?
<input type="text" value="Name" />
I’ve tried:
$(this).inputValue("");
But it doesn’t work. If I’m unable to change the value, how to add text to the input ($(this).text(“”); works very well in, for example, textareas).
Thanks!
Use
.val(newValue)for setting the value of any input type element (including<textarea>and<select>), like this: