Style JavaScript Tutorial

This example uses a custom Internet Explorer property and will not work in other browsers.

    
        Computed Style Example
        
            div.special {
                background-color: inherit;
            }
        
        
            function getBackgroundColor() {
                var oDiv = document.getElementById("div1");
                alert(oDiv.currentStyle.backgroundColor);
            }