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

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

The newest version!
function fun(element){
    var hash={};
    var atts=element.attributes;
    for (i = 0; i < atts.length; i++){
        var att = atts[i];
        hash[att.nodeName]=att.nodeValue;
    };
    return hash;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy