Using jquery and texotela inside my form, I have input fields that I want them to allow the user to enter only numric values.
so I added $(".numericInput").numeric({ decimal: false, negative: false}); to them.
My problem is that my inputs also have a function called when the onChange event is triggered, but after inserting the plugin, the event is not triggered.
How can I allow the user to click only numbers and still have an onChange event for those inputs ?
Thank's In Advance.
<input type="number"/>