difference between prop() and attr() in jQuery and when to use attr() and prop()

JqueryAttrProp

Jquery Problem Overview


I saw in some places .attr() is used in jQuery.In some places .prop() is used.But i searched in SO and google i am very confused .Please tell me the exact difference between these two and when to use them.

I have seen the following links https://stackoverflow.com/questions/15057281/jquery-attr-vs-prop-there-are-a-list-of-props https://stackoverflow.com/questions/13247058/jquery-attr-vs-prop

But I did not got the answer.Please help me.Thanks in advance.

Before giving a downvote please explain the reason, then I will correct in my next post.

Jquery Solutions


Solution 1 - Jquery

from docs

>The difference between attributes and properties can be important in specific situations. Before jQuery 1.6, the .attr() method sometimes took property values into account when retrieving some attributes, which could cause inconsistent behavior. As of jQuery 1.6, the .prop() method provides a way to explicitly retrieve property values, while .attr() retrieves attributes.

example

>For example, selectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, and defaultSelected should be retrieved and set with the .prop() method. Prior to jQuery 1.6, these properties were retrievable with the .attr() method, but this was not within the scope of attr. These do not have corresponding attributes and are only properties.

updated after comment

You can set an attribute for HTML element. You define it while writing the source code, once the browser parse your code, corresponding DOM node will be created which is an object thus having properties.

Simple example can be..

<input type="test" value="test" id="test" />

Here type, value, id are attributes.Once browser renders it, you will get other properties like align, alt, autofocus, baseURI, checked and so on.

link if you want to read more on this

Solution 2 - Jquery

.attr() changes attributes for that HTML tag.

.prop() changes properties for that HTML tag as per the DOM tree.

As the example in this link suggests. An input field can have the attribute "value". This will equal the default value you entered. If the user changes the value in the input field, the property "value" changes in the DOM Tree, but the original attribute is left remaining.

So basically, if you want the default value set up for an HTML tag's attribute, use the .attr() function. If that value can be changed by the user (such as inputs, checkbox's, radios, etc.) use the .prop() function to get the newest value.

Reference : HTML: The difference between attribute and property

Example Snippet

$(document).ready(function() {
  console.log($('#test').attr('value') + " - With .attr()");

  $('#answer').click(function() {
    console.log($('#test').attr('value') + " - With .attr()");
    console.log($('#test').prop('value') + " - With .prop()");
  });
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div>Change the input value and check the console...</div>
<input type="text" id="test" value="Sample">
<button id="answer">Click Me</button>

Solution 3 - Jquery

JQuery is a changing library and sometimes they make regular improvements. .attr() is used to get attributes from the HTML tags, and while it is perfectly functional .prop() was added later to be more semantic and it works better with value-less attributes like 'checked' and 'selected'.

It is advised that if you are using a later version of JQuery you should use .prop() whenever possible.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPSRView Question on Stackoverflow
Solution 1 - JquerybipenView Answer on Stackoverflow
Solution 2 - JqueryCP510View Answer on Stackoverflow
Solution 3 - JqueryCyril GuptaView Answer on Stackoverflow