$(document).ready(function(){ $(".notallowdec").keypress(function (e){ if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57) ) { return false; }else{ } }); $('.allowdec').keypress(function(event){ if ((event.which != 46 || $(this).val().indexOf('.') != -1)&& (event.which < 48 || event.which > 57)) { if((event.which != 46 || $(this).val().indexOf('.') != -1)) { //alert('Multiple Decimals are not allowed'); } event.preventDefault(); } if(this.value.indexOf(".")>-1 && (this.value.split('.')[1].length > 1)) { //alert('Two numbers only allowed after decimal point'); //event.preventDefault(); } }); });
Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Saturday, 16 December 2017
Jquery allow decimal & integer script
Subscribe to:
Post Comments (Atom)
Feet/Inches to Meters Converter & Lbs to Kgs Converter
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Feet/Inches ⇄...
-
<?php $to = "somebody@example.com, somebodyelse@example.com"; $subject = "HTML email"; $message = " <h...
-
ISAIMINI.COM Download
-
document.onkeydown = myKeyDownHandler; function myKeyDownHandler(event){ alert(event.keyCode) }
No comments:
Post a Comment