Skip to content Skip to sidebar Skip to footer

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.

Solution 2:

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...
});

Working example

Post a Comment for "Get Each Attribute Of Element In Loop Function"