Categories: jQuery

Difference between prop and attr in jQuery

Share

The prop and attr both method sets or returns properties/attributes and values of the selected elements. Let’s see the difference between Attr and Prop in jQuery.

prop() grabs the specified DOM property whereas attr() grabs the specified HTML attribute.

To know more about jQuery prop(), click here.

To know more about jQuery attr(), click here.

Example:

<input type="text" value="Before change" id="textID"/>

$('#textID').change(function(){
console.log('attr(): '+$(this).attr('value')); // old value
console.log('prop(): '+$(this).prop('value')); // new value
});

The jQuery prop() method returns boolean value for selected, checked, readonly, disabled and so on while attr() returns a defined string.

Read Also: Switch List/Grid View using jquery

prop and attr example:

<input id="checkID" checked="checked" type="checkbox" />

$('#checkID').attr('checked') //returns checked
$('#checkID').prop('checked') //returns true

Recent Posts

Role Of Gojek Clone In Growth Campaigns For Your Business

When was the last time you heard that a clone app like Gojek could efficiently…

2 hours ago

How to Optimize Your E-Commerce Pages and Improve UX?

The e-commerce market is growing and evolving at a rapid pace. More and more people…

13 hours ago

Overview of Reputation, Services, and Features of IplWin

IplWin stands as a reliable and enthralling platform for Indian punters, offering a captivating blend…

3 days ago

Blogging Brilliance: Driving Traffic and Engagement with Quality Content

Introduction In today's online age, consumers are constantly bombarded with information. They crave valuable content…

3 days ago

How Assisted Living Gives Seniors More Freedom

In today’s rapidly aging society, finding a living situation that provides older adults with both…

3 days ago

Should you go for a Refurbished Mac?

If you wish to purchase a Mac, then it is strongly suggested to consider purchasing…

4 days ago