Click here to Skip to main content
16,004,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

Please provide a jquery for not allowing decimal point in a textbox.



Thanks & Regards,
Anupama
Posted

1 solution

You can restrict decimal by using numeric.js plugin.You can download it from here
https://github.com/SamWM/jQuery-Plugins/blob/master/numeric/jquery.numeric.js[^]
Also put the code in head section
C#
<script type="text/javascript">
$("#textboxId").numeric(false, function() { alert("Integers only"); this.value = ""; this.focus(); });
</script>

Hope this helps
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900