Wednesday 16 August 2017

Difference Between Prop and Attr in jQuery

http://jsfiddle.net/bipen/54nLM/

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


alert('attr(): '+$('#test').attr('value'));
alert('prop(): '+$('#test').prop('value'));

//change the input text value and click outside the input.
$('#test').change(function(){
    alert('attr(): '+$(this).attr('value'));
    alert('prop(): '+$(this).prop('value'));

});


first we need to think about what is an attribute and what is a property -
Attributes provide additional info about an HTML element - for example <input id="some_id" value="some_value"> basically they are things with name="value" in HTML constructs the point though is we are now talking about what is contained in the original HTML file
Now once the HTML is loaded and placed into the DOM HTML structure, then it becomes a node in that tree and it becomes a property of that node.
Content wise those things are the same, except if you modify
so now we can discuss jQuery.attr() vs jQuery.prop()
the jQuery.attr() will give the value of the first matching attribute in the original HTML file, while
jQuery.prop() will give the value of that same object but instead fetches it from the populated DOM structure
in many cases the returned item will be the same - but keep in mind one is the current state vs the original state
But - in earlier versions of jQuery (before 1.6) there are some special considerations, so if that is what you are doing then I would take a closer read in api.jquery.com/prop

This article explains the difference between prop and attr in jQuery.
jQuery.attr()

 Gets the value of an attribute for the first element in the set of matched elements.

 Whereas:

  jQuery. Prop ()
 

 Gets the value of a property for the first element in the set of matched elements.

 What Attributes actually are

 Attributes carry additional information about an HTML element and come in name=”value” pairs. You can set an attribute for a HTML element and define it when writing the source code. 

For example:
  1. <input id="txtBox" value="Jquery" type="text" readonly="readonly" />  
As shown above, “id”, "type” and “value" are attributes of the input elements. 

 Property

 Property is a representation of an attribute in the HTML DOM tree. Once the browser parses your HTML code, the corresponding DOM node will be created that is an object thus having properties.

 In the preceding case, once the browser renders the input in the browser, other properties like align, alt, autofocus and baseURI are checked and so on, will be added as depicted in the following image.
 Property

Since attr() gives you the value of an element as it was defined in the HTML on page load. It is always recommended to use prop() to get the values of elements modified via JavaScript/jQuery in the browser at rumtime. It always keeps the current state value.

Here we'll have a look at the example that also states the difference between both of them.

I have a HTML text box with some attributes as shown below:
HTML text box 

 If I run the following jQuery syntax then it will produce such results.

jQuery syntax
 Now I've slightly changed the code and removed the read-only attribute as shown below in the image:

code
 I run the application and see some attribute and property to understand the difference on the fly.

 Initially after running the application we have these attributes and properties of input text type as depicted in the image below.

 Note: Kindly scroll down when you run the attached sample application to see the Value property using the Firebug tool of the Firefox browser.

Firefox browser

 Now I changed the value at runtime to see the attributes and properties. I've put Welcome jQuery in the TextBox. Now see that the attribute value is still jQuery while the value property has been changed to Welcome jQuery.
value property 
The property always represents the current state while the attribute (except in old versions of IE) represents the initial state or is meant for HTML attributes since they are strictly defined. The attribute tells you nothing about the current state.

Reference MSDN
  1. for a checkbox (jquery 1.6+)  
  2. <input id="check1" checked="checked" type="checkbox" />    
  3. .attr('checked'//returns checked  
  4. .prop('checked'//returns true  
  5. .is(':checked'//returns true  
The Prop() method returns a Boolean value for checked, selected, disabled, readOnly and so on while attr returns a defined string. So, you can directly use .prop("checked") in an if condition.

 SelectedIndex, tagName, nodeName, nodeType, ownerDocument, defaultChecked, defaultSelected and so on should be retrieved and set with the .prop() method. These do not have corresponding attributes and are only properties.

 .attr() calls .prop() internally so the .attr() method will be slightly slower than accessing them directly through .prop().

 Question: What are the differences among .js and .min.js and vsdoc.js?
 

Answer: The jQuery library comes in the 2 versions Production and Deployment. The deployment version is also known as the minified version. So .min.js is basically the minified version of the jQuery library file. Both the files are the same as far as functionality is concerned. but .min.js is quite small in size so it loads quickly and saves bandwidth.
min js 

 Question: How to select id that contains a Meta Character?

 Answer: If any element id (<li id="first-li" class="list">Sachin Kalia</li>) contains a meta character between the id then it should be resolved using the two backslashes (\\) as the prefix in the ID selector.
Selector

No comments:

Post a Comment

Recent Post

Parallel Task in .Net 4.0