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

#105685
Bert
Participant

Formatting on CSS-tricks is a bit tricky sorry:
HTML:

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