jcadima
8/11/2018 - 8:36 PM

Allow ony numbers and decimals

http://jsfiddle.net/ecDmn/1/


$("#txtQty").keyup(function() {
    var $this = $(this);
    $this.val($this.val().replace(/[^\d.]/g, ''));        
});​