How can I get name property of HTML element with jQuery?
closed as not a real question by JMax, BNL, Rory McCrossan, Andrew Whitaker, Toon Krijthe Jan 13 '12 at 21:40
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You should use
you should use an id selector, if you use a class selector you encounter problems because a collection is returned |
|||
|
|
|
|||||
|
|
To read a property of an object you use This is no different for elements.
If you specifically want to use
Please note that attributes and properties are not necessarily the same. |
|||||||||||
|
|
The method .attr() allows getting attribute value of the first element in a jQuery object:
|
|||
|
|
|
Play around with this jsFiddle example: HTML:
jQuery:
This uses jQuery's .attr() method to get value for the first element in the matched set. While not specifically jQuery, the result is shown as an alert prompt and written to the browser's console. |
|||
|
|

.prop()to get properties, and.attr()to get attributes. Don't use.attr()to get a property as everyone suggests. We're working with JavaScript here, not HTML markup. – squint Jan 13 '12 at 15:29