Mobile-friendly Virtual NumPad Plugin For jQuery - digitalKeyboard

File Size: 2.7 KB
Views Total: 7219
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
Mobile-friendly Virtual NumPad Plugin For jQuery - digitalKeyboard

digitalKeyboard is a jQuery plugin that reveals a touch-friendly virtual numeric keypad (with or without random numbers) from the bottom of the screen as you start typing in an input field.

The plugin also has the ability to limit the max number of digits to be entered in the input field.

How to use it:

1. Create an input field on the web page.

<input id="demo" type="text">

2. Insert the digitalKeyboard jQuery plugin's script after loading jQuery library.

<script src="//code.jquery.com/jquery.min.js"></script>
<script src="js/digitalKeyboard.js"></script>

3. Call the main function numKey on the input field and done.

$("#demo").numKey();

4. Set the maximum length of the input field.

$("#demo").numKey({
  limit: 6
});

5. The JavaScript to display a randomly allocated set of numbers from 0 to 9 for password/pin input:

$("#demo").numKey({
  disorder: true
});

This awesome jQuery plugin is developed by fuzhongyi. For more Advanced Usages, please check the demo page or visit the official website.