I\'m using the following Javascript to restrict a text field on my website to only accept numerical input, and no other letters or characters. The problem is, it REALLY reje
Add then use
$("element").numeric({ decimal: false, negative: false });