<html>
<body>
<h3>A demonstration of how to access a LI element</h3>
<ol>
<li id="myLi">Coffee</li>
<li>Tea</li>
<li>Milk</li>
<li>Water</li>
</ol>
<p>Click the button to set the list items to increment from the number "300" instead of "1".</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
var x = document.getElementById("myLi");
x.value = "300";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_li_get by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:07:37 GMT -->
</html>