Ticket #11121 (closed bug: invalid)
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: | ||
| Blocking: | Blocked by: |
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 ]),
Change History
comment:1 Changed 17 months ago by timmywil
- Owner set to a440guy
- Priority changed from undecided to low
- Status changed from new to pending
- Component changed from unfiled to css
comment:2 Changed 16 months ago by trac-o-bot
- Status changed from pending to closed
- Resolution set to invalid
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!
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

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.