Click to See Complete Forum and Search --> : number format tag


vik_pa
05-20-2003, 10:11 AM
whats the number format tag?

khalidali63
05-20-2003, 10:19 AM
There is no number format tag in HTML,you will have to use javascript Number objects function toFixed()

var num = 2.01002354;
alert(num.toFixed(2))

will display
2.01

vik_pa
05-20-2003, 10:25 AM
NO. What I want is to display a list as follows:
1. ....
2....
3....
............

nkaisare
05-20-2003, 10:39 AM
<ol>
<li>List item 1</li>
<li>List item 2</li>
...
<li>List item n</li>
</ol>