I was doing some cross browser testing on certain piece of functionality today, and ran across a rather nifty little gem.
In IE8: Out of memory at line: 99
In IE7: Out of memory at line: 100
In IE6: Stack overflow at line: 101
From what I've been able to dig up, most of the time these messages start appearing, it's an issue with having an array in which the number of elements is greater than 65,535
. However, I don't believe that that's the issue at hand here.
The functionality in question is an action from within an iframe
"closing" the current iframe
and "opening" another using jQuery. It's actually happening on the close/open interaction.
Has anyone seen anything like this before?
Edit: Upon further investigation, it doesn't actually seem to be related to the iframes. Still digging, but any suggestions would be appreciated.