Get Each Attribute Of Element In Loop Function
I have a HTML DIV element: I've a new Variable: attArray: var attArray = new Ar
Solution 1:
Each element already has an attributes-collection, you can access it like an array.
Each element already has an attributes-collection, you can access it like an array.
Simple:
$('.obj').each(function() {
var attArray = [];
for(var k = 0; k < this.attributes.length; k++) {
var attr = this.attributes[k];
if(attr.name != 'class')
attArray.push(attr.value);
}
//do something with attArray here...
});
Post a Comment for "Get Each Attribute Of Element In Loop Function"