<html>
<body>
<ul id="myList" style="list-style-type:circle;">
<li>Coffee</li>
<li>Tea</li>
<li>Water</li>
<li>Soda</li>
</ul>
<button type="button" onclick="myFunction()">Return list-item marker type</button>
<script>
function myFunction() {
alert(document.getElementById("myList").style.listStyleType);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_liststyletype3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:52 GMT -->
</html>