Click here to Skip to main content
15,886,788 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy3-Jun-12 21:43
professionalManfred Rudolf Bihy3-Jun-12 21:43 
GeneralRe: passing argument from javascript Pin
dineshbabub3-Jun-12 22:14
dineshbabub3-Jun-12 22:14 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 1:48
professionalManfred Rudolf Bihy4-Jun-12 1:48 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 2:02
professionalManfred Rudolf Bihy4-Jun-12 2:02 
GeneralRe: passing argument from javascript Pin
dineshbabub4-Jun-12 16:08
dineshbabub4-Jun-12 16:08 
GeneralRe: passing argument from javascript Pin
Manfred Rudolf Bihy4-Jun-12 22:24
professionalManfred Rudolf Bihy4-Jun-12 22:24 
QuestionFormatting Numbers to Local Settings Pin
Nagy Vilmos31-May-12 1:33
professionalNagy Vilmos31-May-12 1:33 
AnswerRe: Formatting Numbers to Local Settings Pin
Manfred Rudolf Bihy31-May-12 3:02
professionalManfred Rudolf Bihy31-May-12 3:02 
The same function can be applied to numbers. See here: http://www.tutorialspoint.com/javascript/javascript_builtin_functions.htm[^].
Here an example:
HTML
<html>
    <body>
        Test number formatting with locale.
    </body>
    <script type="text/javascript">
        var num = 100234.56789;
        alert(num.toLocaleString());
    </script>
</html>


In my browser with german settings the number is rendered as 100.234,56789, which is exactly the expected behaviour.

Regards,

Manfred

"With sufficient thrust, pigs fly just fine."
Ross Callon, The Twelve Networking Truths, RFC1925
"Der Berg ruft!"
Me, 2012-05-24


GeneralRe: Formatting Numbers to Local Settings Pin
Nagy Vilmos31-May-12 4:06
professionalNagy Vilmos31-May-12 4:06 
GeneralRe: Formatting Numbers to Local Settings Pin
Manfred Rudolf Bihy31-May-12 4:19
professionalManfred Rudolf Bihy31-May-12 4:19 
QuestionExtJS Pin
RameshChTulal29-May-12 1:28
RameshChTulal29-May-12 1:28 
AnswerRe: ExtJS Pin
thatraja4-Jun-12 17:18
professionalthatraja4-Jun-12 17:18 
QuestionUpdate DIV text by Javascript Pin
iucaa27-May-12 10:06
iucaa27-May-12 10:06 
AnswerRe: Update DIV text by Javascript Pin
Sandeep Mewara27-May-12 19:58
mveSandeep Mewara27-May-12 19:58 
GeneralRe: Update DIV text by Javascript Pin
iucaa29-May-12 10:20
iucaa29-May-12 10:20 
Questionimplement double click event on Div child elements Pin
Steve Holdorf27-May-12 2:18
Steve Holdorf27-May-12 2:18 
AnswerRe: implement double click event on Div child elements Pin
Steve Holdorf28-May-12 7:14
Steve Holdorf28-May-12 7:14 
QuestionJava Script moveing a picture around the screen Pin
Boaz Yaari26-May-12 5:00
Boaz Yaari26-May-12 5:00 
AnswerRe: Java Script moveing a picture around the screen Pin
Ali Al Omairi(Abu AlHassan)26-May-12 20:57
professionalAli Al Omairi(Abu AlHassan)26-May-12 20:57 
GeneralRe: Java Script moveing a picture around the screen Pin
Boaz Yaari27-May-12 10:43
Boaz Yaari27-May-12 10:43 
GeneralRe: Java Script moveing a picture around the screen Pin
BobJanova28-May-12 23:34
BobJanova28-May-12 23:34 
GeneralRe: Java Script moveing a picture around the screen Pin
Boaz Yaari27-May-12 11:22
Boaz Yaari27-May-12 11:22 
GeneralRe: Java Script moveing a picture around the screen Pin
Ali Al Omairi(Abu AlHassan)28-May-12 0:38
professionalAli Al Omairi(Abu AlHassan)28-May-12 0:38 
AnswerRe: Java Script moveing a picture around the screen Pin
Ali Al Omairi(Abu AlHassan)31-May-12 7:40
professionalAli Al Omairi(Abu AlHassan)31-May-12 7:40 
GeneralRe: Java Script moveing a picture around the screen Pin
enhzflep31-May-12 10:38
enhzflep31-May-12 10:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.