Side navigation
#11121 closed bug (invalid)
Opened December 30, 2011 07:42PM UTC
Closed January 14, 2012 08:10AM UTC
jQuery(selector).css("clip") returns "undefined" in IE8
Reported by: | a440guy | Owned by: | a440guy |
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | css | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
jQuery(selector).css("clip") returns "undefined" in IE8.
This is because (in IE) document.getElementById("someid").currentStyle!["clip"] does not exist. However, document.getElementById("someid").style.!["clip"] does exist.
I propose the the following line (!#6727) in jquery-1.7.1.js:
ret = elem.currentStyle && elem.currentStyle[ name ],
be changed to:
ret = elem.currentStyle && (elem.currentStyle[ name ] || elem.style[ name ]),
Attachments (0)
Change History (2)
Changed December 30, 2011 10:36PM UTC by comment:1
component: | unfiled → css |
---|---|
owner: | → a440guy |
priority: | undecided → low |
status: | new → pending |
Changed January 14, 2012 08:10AM UTC by comment:2
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/. Open the link and click to "Fork" (in the top menu) to get started.
We already fallback to uncomputed style if the property is null or undefined.