jquery-glob
jquery-glob copied to clipboard
A jQuery plugin for the globalization of string, date, and number formatting and parsing.
- Old link resulted in 404. Updated the link to point to the current project location.
`$.format` formats `Infinity` in a very peculiar way. I haven't checked it in other cultures, but I suspect `$.format(Infinity, 'n0', 'en-GB')` would yield `"In.fin.ity"`. Although I don't think a lot...
Perhaps $.format should convert nulls and undefined values to empty strings and invoke .toString() for other non-date/numerics?
I am using $.format(today, "d") using Arabic as the language and I get a date something like "30/03/32". Using $.parseDate("30/03/32") returns null while keeping the culture with Arabic the whole...
For example, this script fails: ``` $.culture = $.cultures.ru; $.localize('hello', 'ru', 'world'); $.localize('hello') ``` TypeError: culture is undefined { message="culture is undefined"}
which breaks all demos.
If there are no plan, i'm willing to write one.
Hello, I active plugin in an text input with this: //Seta valor e ativa DatePicker $('#' + colDefinition.Id).val(theValue) .datepicker({ changeMonth: true, changeYear: true }); and activated the plugin correctly. When...