Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Restricted the input field Re: Restricted the input field

#105684
Bert
Participant

Ok. Then jQuery:

$(‘.numbers’).keypress(function(key) {
if(key.charCode < 48 || key.charCode > 57) return false;
});