Side navigation
#8746 closed bug (duplicate)
Opened April 01, 2011 06:10PM UTC
Closed April 02, 2011 04:18PM UTC
Last modified April 02, 2011 04:18PM UTC
.text() Bug in IE7 with Iframes
Reported by: | aaronm67 | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | manipulation | Version: | 1.5.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If a collection contains items from two different frames, .text(val) on that collection will throw an error in IE7.
EX:
<script>
$("iframe").contents().find("span").text("fails");
</script>
<iframe src="frame1"><span>frame1</span>
<iframe src="frame2"><span>frame2</span>