Category: Javascript & Jquery
-
Dynamic add and remove Textbox with numeric validation using javascript
<script type=’text/javascript’> // Numeric validations function numbersonly(e){ var unicode=e.charCode? e.charCode : e.keyCode if (unicode!=8){ //if the key isn’t the backspace key (which we should allow) if (unicode<48||unicode>57) //if not a number return false //disable key press } } // remove dynamic textbox function rem(inval) { $(“#my”+inval+”Div”).remove(); } // add dynamic textbox // ——————————————————– // Author…
