Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

number format


Number Value Format

Descrição

Number Format é um plugin para retornar valores numéricos formatados de forma simples.

Uso

Examplo 1:Para retornar o valor utilizando a configuração padrão de formato numérico.

$(document).ready(function(){
    var formated_value = $().numberFormat( $('#idNumber').val() );
    $('#idNumber').val(formated_value);
});
<br/>
<input type="text" id="idNumber" name="number" value="123456789" />

Examplo 2:Para retornar o valor definindo a configuração de formato numérico com 5 casas decimais.

$(document).ready(function(){
    var formated_value = $().numberFormat( $('#idNumber').val(), { decimalsLimit:5 } );
    $('#idNumber').val(formated_value);
});

<input type="text" id="idNumber" name="number" value="123456789" />

Simple Number Format

An extremely simple to use number formatter. If used for currency absolutely no customization is required.

Formating your number

With this plugin you can format numbers in different ways.
Just say how many decimals you need, the decimal separator, thousand separator and a symbol if you wish.
Easy to use to format a currency and use to print the number friendly.

How to use it:
var formated_value = $().number_format(final_value);

Advanced:
var formated_value = $().number_format(final_value, {
     numberOfDecimals:3,
     decimalSeparator: '.',
     thousandSeparator: ',',
     symbol: 'R$'});

NumberFormatter - International Support for Number Formatting

This plugin is a NumberFormatter plugin. Number formatting is likely familiar to anyone who's worked with server-side code like Java or PHP and who has worked with internationalization. For example, a number that we would write in the US as "1,250,500.75" would be written differently in different countries: "1.250.500,75" in Germany, "1 250 500,75" in France, and "1'250'500.75" in Switzerland, and "125,0500.75" in Japan. The number is exactly the same, but it's just written using a different format when presented to users of the web application.

Here's a typical use case for what I'm describing. You have an input field in your web application that asks a person for their salary. In the US, the user can type in a varied forms of input - "$65000", "65,000", "65000", "65,000.00". All these numbers are exactly the same, but we want to control how these numbers look on the screen.

Here's an example of how you'd use this plugin.

$("#salary").blur(function(){