$('.numbersOnly').keyup(function () { this.value = this.value.replace(/[^0-9\.]/g,''); }); $('.removeZero').click(function () { Element_Value = $(this).val(); if (Element_Value == 0) { $(this).val(""); } });