Skip to content
Snippets Groups Projects
Commit d8fb6e24 authored by agusmakmun's avatar agusmakmun
Browse files

Add post

parent e49d376f
No related branches found
No related tags found
No related merge requests found
---
layout: post
title: "Javascript Validator for Input Number"
date: 2016-04-26 04:19:22 +0700
categories: [others]
---
This javascript will validate/allow the number only when event key is pressed.
{% highlight html %}
<input id="id_price" type="number" min=0 />
<script type="text/javascript">
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
document.getElementById('id_price').setAttribute("onkeypress", "return isNumber(event)");
</script>
{% endhighlight %}
For example result of it:
<script async src="//jsfiddle.net/agaust/3qz105nn/embed/html,result/dark/"></script>
\ No newline at end of file
---
layout: posts_by_category
categories: others
title: Others
permalink: /category/others
---
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment