Style JavaScript Tutorial

This example uses the DOM style methods and will fail in Internet Explorer.

    
        Computed Style Example
        
            div.special {
                background-color: red;
            }
        
        
            function getBackgroundColor() {
                var oDiv = document.getElementById("div1");
                alert(document.defaultView.getComputedStyle(oDiv, null).backgroundColor);
            }