|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Can I format a textbox to show US currency? remove decimal places? I have wa JS script that write the value to the box but it is just XXX.XX and I want $XXX.
Thanks in Advance New to JS |
|
#2
|
|||
|
|||
|
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">quote:</font><HR>Originally posted by jonath27:
Can I format a textbox to show US currency? remove decimal places? I have wa JS script that write the value to the box but it is just XXX.XX and I want $XXX. Thanks in Advance New to JS[/quote] You can try it with: document.write(Math.floor(XXX.XX)) This should return XXX. If you want XXX+1, you must use Math.ceil(XXX.XX). Regards, Peter |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > Formatting a text box |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|