DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
jQuery

Getting all element attributes values in jQuery

Share

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:

  • className
  • tagName
  • id
  • href
  • title
  • rel
  • src

jQuery provides an easy way to manipulate element attributes and access to the element so that we can change its properties also.

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.

Jacob Frazier

Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.

Recent Posts

Flawless Prize Fulfilment and Management That Takes Your Marketing Campaigns to the Next Level

In today’s fast-paced and highly competitive marketing environment, even the most creative campaign is only…

1 day ago

Moving company Zeromax in NYC

We are NYC moving firm. Are you planning a flat move? Maybe a distance or…

5 days ago

Mobile testing: An important task for smooth functioning of the device

Mobile devices, unlike desktops and laptops, can not be handled by dozens or hundreds of…

6 days ago

Augmented Reality in Education is Blowing Up the Candles!

Augmented Reality- An immersive experience for the learners! Learning and education aren’t the same as…

1 week ago

Here Are 4 Diamond Studs for You to Gift Your Special Ones

On special days like birthdays and weddings, we all like to celebrate our loved ones…

1 week ago

7 Best Web Application Development Tools

A web application is different from a regular mobile or desktop application as it runs…

1 week ago