Skip to content
This repository has been archived by the owner on Jan 18, 2021. It is now read-only.

markenwerk/NumericInput

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NumericInput

A simple jQuery plug-in which sets an (input) element to only allow numbers.

Options

allowFloat: (boolean) Allows floating point numbers to be entered. Default: false.

allowNegative: (boolean) Allows negative numbers to be entered. Default: false.

min: (number) The minimum value that can be entered into the textbox, if set to null any number is valid. Default: null

max: (number) The maximum value that can be entered into the textbox, if set to null any number is valid. Default: null

Usage

Given the following input element <input id="elementID" type="text" />

To create an input element which only accepts positive integers simple use the .numericInput() function.

<script type="text/javascript" src="../numericInput.min.js"></script>
<script>
	$(function() {
		$("#elementID").numericInput();
	});
</script>

To create an input element which accepts positive or negative integer set the allowNegative option to true

$("#elementID").numericInput({ allowNegative: true });

To create an input element which accepts positive numbers (floating point) set the allowFloat option to true

$("#elementID").numericInput({ allowFloat: true });

To create an input element which accepts any number (positive or negative floating point) set both allowFloat and allowNegative to true

$("#elementID").numericInput({ allowFloat: true, allowNegative: true });

About

Sets a html textbox to only allow numeric input.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%