how to get html element by name using jquery without using id or class ? Is there any way to do that?
|
|
It should be known that the only correct answers that have been given are the ones that included quotes around the attribute value, ie.
It is a mandatory requirement to include quotes around the value, see: http://api.jquery.com/attribute-equals-selector/ If you are using "name" in reference to the nodeName or "tag", then simply select by that string:
|
|||
|
If you mean the name attribute, it's this:
If you mean the element name, then it's like this:
|
|||
|
|
|
Use this:
Note: For performance reasons, it's better to specify the tag name. So, if you're looking for images with a name of winter, you'll use this:
|
|||||||||
|
|
Not sure if you mean tag name or named attribute. So here is both - Attribute Equals Selector [name="value"] http://api.jquery.com/attribute-equals-selector/ or Element Selector (“element”) http://api.jquery.com/element-selector/
|
||||
|
|
for or
for The jQuery selector works like a CSS selector. |
|||
|
|
|
In jQuery, you can use lots of things besides just id and class. The CSS3 selector specification is full of other things you can use and jQuery even has some more things than this I believe. For example, you can use tag type, attribute values, position in the hierarchy. These are all valid jQuery selector objects:
In many cases, you will get better performance with selectors based on tag types, id values and class names because many browsers support searching for those in native code. |
|||
|
|