Side navigation
#14580 closed bug (invalid)
Opened November 27, 2013 09:16PM UTC
Closed December 12, 2013 08:48AM UTC
Nested $(doc).ready calls don't work in IE9 or lower
Reported by: | jaquers@gmail.com | Owned by: | jaquers@gmail.com |
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I'm not necessarily advocating this as good practice, just reporting the behavior.
Might duplicate #10010.
Expected behavior: Separate alert for each element that matches
#things li
Browsers
Chrome: PASS
Firefox: PASS
IE10: PASS
IE9: FAIL
IE8: FAIL
function Thing(el) { $(document).ready(function() { alert($(el).attr('class')); }); } $(document).ready(function() { $('#things li').each(function() { var thing = new Thing(this); }); });
Attachments (0)
Change History (2)
Changed November 28, 2013 12:28AM UTC by comment:1
owner: | → jaquers@gmail.com |
---|---|
status: | new → pending |
Changed December 12, 2013 08:48AM 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!
This seems to work fine in edge, can you confirm?
http://jsfiddle.net/ysd6U/2/