Skip to content

jQuery plugin for number formatted input and simple calculations

Notifications You must be signed in to change notification settings

ichsanks/numberformatted

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

numberformatted

jQuery plugin for number formatted input and simple calculations

jQuery numberformatted is a jQuery plugin designed to help at formatting input to numbers and do simple calculations.

How to Use

Include jQuery in your page:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

Include numberformatted plugins

<script src="js/numberformatted.js"></script>

Initialize plugins

<script>
$(function() {
  $('input').numberformatted();
});
</script>

Calculations

  • Add data-cell="[cell-name]" to input element as calculation data
  • Add data-equation="[function]" to element as calculation result
  • Available function to use: +, -, *, /, SUM()
  • Don't use the same cell-name in one page

Examples

Addition

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-equation="A1+A2" />

Substraction

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-equation="A1-A2" />

Multiplication

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-equation="A1*A2" />

Division

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-equation="A1/A2" />

Summary

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-equation="SUM(A)" />

Chaining calculations

<input type="text" data-cell="A1" />
<input type="text" data-cell="A2" />
<input type="text" data-cell="B1" data-equation="SUM(A)" />
<input type="text" data-cell="C1" />
<input type="text" data-cell="C2" />
<input type="text" data-cell="B2" data-equation="C1*C2" />
<input type="text" data-equation="SUM(B)" />

About

jQuery plugin for number formatted input and simple calculations

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published