List type : List Bullets « HTML « JavaScript DHTML






List type

    
<html>
<body>
<ol id="myOl">
    <li>Item One</li>
    <li>Item Two</li>
    <li>Item Three</li>
</ol>
<script language="JavaScript">
    document.getElementById("myOl").type = "i"
</script>
</body>
</html>

    
      
      








Related examples in the same category

1.'compact' Example
2.List Start property
3.Using firstChild and lastChild Properties
4.Change Bullets
5.Change bullet style
6.Add bullets (item)