Side navigation
#9442 closed bug (invalid)
Opened May 27, 2011 02:45PM UTC
Closed May 27, 2011 02:56PM UTC
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
Attachments (0)
Change History (1)
Changed May 27, 2011 02:56PM UTC by comment:1
component: | unfiled → attributes |
---|---|
priority: | undecided → low |
resolution: | → invalid |
status: | new → closed |
You can do $('#test').prop('tagName') or $('#test')[0].tagName as it is a property and not an attribute.