I have a form (with class input) with lots of input tags. I want to write onchange event for the input[type="text"] and input[type="number"]
How to do it?
All i have now is:
$('.input input[type="number"],.input input[type="text"] ').change() ...
There has to be a shorter way of doing this
inputtags aninputclass...