Opened 12 years ago
Closed 12 years ago
#9442 closed bug (invalid)
Tag 'FORM' no tagName
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | attributes | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<form id="test"> </form>
$('#test').attr('tagName')
not tagName
Change History (1)
comment:1 Changed 12 years ago by
Component: | unfiled → attributes |
---|---|
Priority: | undecided → low |
Resolution: | → invalid |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
You can do $('#test').prop('tagName') or $('#test')[0].tagName as it is a property and not an attribute.