Side navigation
#7645 closed bug (worksforme)
Opened November 28, 2010 06:26AM UTC
Closed November 28, 2010 07:06AM UTC
Last modified September 29, 2011 03:31PM UTC
Child Selector broken in ie7
Reported by: | brennanmoore@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.6 |
Component: | unfiled | Version: | 1.4.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
jQuery('#templates>.bar') fails to select any items in ie7
works in: Chrome, Firefox 3.5+ (atleast), IE8+
fails in: ie7
Attachments (0)
Change History (2)
Changed November 28, 2010 07:06AM UTC by comment:1
_comment0: | A) It is invalid to have <li> nested as children of a <div> - they must be the children of a <ul> or <ol> \ B) Your test case appears to be working for me in IE7. \ C) http://jsfiddle.net/7f8Kw/2/ → 1290927987939834 |
---|---|
resolution: | → worksforme |
status: | new → closed |
Changed September 29, 2011 03:31PM UTC by comment:2
Child selector is working IE7
i have multiple places in my js code where i am iterating through parent > child elements like the following. works well in all other browsers but not in IE7.
$('#reviewDisplayContent > #reviewSummary').each(function () {
//code here
}
A) It is invalid to have <li> nested as children of a <div> - they must be the children of a <ul> or <ol>
B) Your test case appears to be working for me in IE7.
C) http://jsfiddle.net/7f8Kw/2/