Hello Buddies... can anyone help me in using Ordered list while using WHILE loop. For Example The code is <html> <body bgcolor="#84AEC6"> <h2>Table of 10 using While Loop</h2> <script type="text/javascript"> var i=1; while (i<=10) { document.write(i+"*10=" + i*10) document.write("<br />") i=i+1; } </script> </body> </html> Now I want to use Order list with every line while printing this table. Infact i am new in using java scripting ... i am unable to understand this logic.... Can Any One Help ....