/ Question & Réponse / Restrict input field to two decimals with jQuery Restrict input field to two decimals with jQuery JQuery Développement front-end //Please enter only 2 decimal places, we have truncated extra points Enter the no: $(document).ready(function(){ $('input#decimal').blur(function(){ var num = parseFloat($(this).val()); var cleanNum = num.toFixed(2); $(this).val(cleanNum); if(num/cleanNum < 1){ $('#error').text('Please enter only 2 decimal places, we have truncated extra points'); } }); }); 27-03-2021 Question & Réponse How do I check two or more conditions in one ‹c:if› ? Java, JSP Développement Back-end How to check if a number is a float or integer value Javascript Développement front-end Restrict input field to two decimals with jQuery JQuery Développement front-end How to check a boolean condition in EL ? Java, JSP, EL Développement Back-end How to convert int to float with Javascript Javascript Développement front-end How to use selected input select with jsp Java, JSP Développement Back-end How to select all checkboxes in table with javascript Javascript Développement front-end How to generate random numbers in Java Java Développement Back-end How to fixed format number decimale after with JS Javascript Développement front-end Angular error: Can't bind to 'ngModel' since it isn't a known property of 'input' Angular Développement front-end Switch statement multiple cases in JavaScript Javascript Développement front-end How to Get the Path of the Current Working Directory in Node.js ? NodeJS Développement back-end