Virtual NumPad Plugin jQuery digitalKeyboard - Download Mobile-friendly Virtual NumPad Plugin For jQuery - digitalKeyboard

Download Mobile-friendly Virtual NumPad Plugin For jQuery – digitalKeyboard

Posted on

This time I will share jQuery Plugin and tutorial about Mobile-friendly Virtual NumPad Plugin For jQuery – digitalKeyboard, hope it will help you in programming stack.

Virtual NumPad Plugin jQuery digitalKeyboard - Download Mobile-friendly Virtual NumPad Plugin For jQuery - digitalKeyboard

File Size: 2.7 KB
Views Total: 5366
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

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.

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

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

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

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

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

4. Set the maximum length of the input field.

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

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

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

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

source : jqueryscript.net