Get style by item index (IE does not support DOM style methods) : item : Style JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Style » item »

 

Get style by item index (IE does not support DOM style methods)

















<html>
<head>
<title>Style Example</title>
<script type="text/javascript">
    function useMethods() {
        var oDiv = document.getElementById("myDiv");
        alert(oDiv.style.item(0));
    }
</script>
</head>
<body>
<div id="myDiv" style="background-color: red; height: 50px; width: 50px"></div><br />
<input type="button" value="Use Methods" onclick="useMethods()" />
</body>
</html>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Style
» item