List Start property : List Bullets « HTML « JavaScript DHTML






List Start property

    
<html>
<body>
   <ol id="myList">
      <li>Item One</li>
      <li>Item Two</li>
      <li>Item Three</li>
      <li>Item Four</li>
      <li>Item Five</li>
   </ol>
<button onclick="document.all.myList.start=12;">Set Start</button>
</body>
</html>

    
      
      








Related examples in the same category

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