Opened 13 years ago
Closed 13 years ago
#5070 closed bug (duplicate)
parents() not working the same with Firefox 3.5.2
Reported by: | rhorn | Owned by: | john |
---|---|---|---|
Priority: | minor | Milestone: | 1.3.2 |
Component: | selector | Version: | 1.3.2 |
Keywords: | parents | Cc: | |
Blocked by: | Blocking: |
Description
Not sure if this is related to jQuery or the update, but parents("SELECTOR") no longer finds elements with tag attributes defined across multiple lines.
Example, the following worked for me before the update, but does not work now:
<div class="testParent
secondClass">
<div class="child1"></div>
</div>
<script type="text/javascript">
$('.testChild').parents('.testParent').click(function(){
alert('gets here');
});
</script>
The following does work: <div class="testParent secondClass">
<div class="child1"></div>
</div>
<script type="text/javascript">
$('.testChild').parents('.testParent').click(function(){
alert('gets here');
});
</script>
Not sure if this is related to jQuery or the update, but parents("SELECTOR") no longer finds elements with tag attributes defined across multiple lines.
Example, the following worked for me before the update, but does not work now:
<div class="testParent
</div>
<script type="text/javascript">
</script>
The following does work: <div class="testParent secondClass">
</div>
<script type="text/javascript">
</script>