All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javaScript.htmlElement.getComputedStyle.js Maven / Gradle / Ivy

There is a newer version: 0.0.42
Show newest version
function fun(element) {
    var hash = {};
    var styleArgs = window.getComputedStyle(element, null);
    var len = styleArgs.length;
    for (var i = 0; i < len; i++) {
        var style = styleArgs[i];
        hash[style] = styleArgs.getPropertyValue(style);
    }
    return hash;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy