Scary IE strikes again. :(
Over the past few days, I have been developing a tool for selecting and loading images for Tiny MCE using modal dialogs. During the script, the jQuery load () function is used several times to load external HTML and insert it into the specified div element.
Everything went fine, even in IE, until about half an hour ago, when I loaded IE to check the change, and all calls to load () now do nothing. If the content should appear in the document (by checking the developer tools), there is an empty div. No error reported either. However, I can update the item manually using html ().
Until a few hours ago everything was working fine in IE ... now it does nothing. I tried using the full addresses (no such luck), cleared the browser cache and tried to send headers without a cache from the php document called by the load () function. Could this be some kind of caching issue?
Here is an example of the first of many such calls:
//Create the dialog. if ($('#imgPropDialog').length == 0) { $('body').append('<div id="imgPropDialog" class="jqmWindow"></div>'); $('
div imgPropDialog is correctly added and displayed inside the document in IE. But the content of image_properties.php never appears. Works great in Chrome (and, presumably, in any other browser than in IE).
Any ideas before I start ripping off all my changes? Thanks
source share