项目作者: hiTyagi

项目描述 :
Converts Number to Textual Value.
高级语言: HTML
项目地址: git://github.com/hiTyagi/numericText.git
创建时间: 2017-01-07T09:09:28Z
项目社区:https://github.com/hiTyagi/numericText

开源协议:MIT License

下载


numericText

Converts Number to Short Textual value.

Examples :



  • 100000 -> 1.00 Lakh (Indian) or 100.00 Thousand (International)

  • 3453232 -> 34.53 Lakh (Indian) or 3.45 Million (International)



Options :





































Option Default Possible values Description
type ‘indian’ ‘indian’, ‘international’ Type of texual currency.
shortHand true true, false Whether full currency text is required or short form.
minimum 2 Integer value greater than 2 Minimum number of digits after which number should be converted to text.
decimal 2 Integer value (>=0) Number of digits after decimal point.


Usage



  1. Add jQuery

  2. Add numericText

  3. Use jQuery selector to convert number to short text



e.g.


//html
231245.45
//js
$(“span#num”).numericText();

or

//html

//js
$(“.textCurr”).numericText({
type:’international’
});


License

numericText is released under the MIT license.