I have 4 text fields in a form that I want to clear when clicking a div.
I gave each text field a class class="1" and am using this function to clear them.
$('#clear').click(function() {
$(".1").val('');
});
This seems to work but I’m wondering if there’s a better, standard way to do it.
Note: I don’t want to clear the entire form.
Aside from that being an invalid class name (pretty sure they can’t start with a number), this should be fine. I would however name the class in a more meaningful way.