Here is little example of getting element attributes values with the help of jQuery and store them in an object.
The element’s attributes property is incredibly handy when we want to see what attributes are present in the element without explicitly knowing which to look for. The attributes property provides an easy level of dynamism.
Most of these attributes are available as DOM node properties through JavaScript.
Some of the more common properties are:
For example, we have following XML node:
<item id="item_01" name="item name" image="image.jpg" />
So, if we use the following loop through all then we can get element attributes.
var element = $("#item_01");
var attributes = {}; $.each(element.get(0).attributes, function(i, attrib){
attributes[attrib.name] = attrib.value;
}); So, after running the above snippet on the node we can get access the values on the attributes object we created like so:
console.log( attributes.id ) // item_01 console.log( attributes.name ) // item name console.log( attributes.image ) // image.jpg
Read Also: 5 Free jQuery Scroll to top Plugins
The attributes property contains them all.
$('#item_01').each(function() {
$.each(this.attributes, function() {
if(this.specified) {
console.log(this.name, this.value);
}
});
}); In this way you can get all attributes of an element in jQuery.
Content marketing has a hidden tax. It's not the writing itself, it's everything that happens…
Most marketing teams aren't failing because they lack data. They're failing because they can't act…
Email marketing continues to be one of the most effective ways for businesses to communicate,…
Xerox first introduced it around the mid-1970s. The need came up because the management activities…
Investing in the forex market may look to be a dangerous game. With some worthwhile…
The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…