The problem with IE causes me complete concern. I have a coldfusion page that uses the JQuery AJAX.load function to load into a new flash file created by the cfchart coldFusion tag. This works fine in firefox: a new flash file and new html element elements. However, in IE: all the html elements that are associated with the flash object are loaded, except that the flash object and embed tags are not displayed at all after launching the ajax call in IE. After viewing in Fiddler, response data such as a Flash application is not even displayed for IE. However, for Firefox.
I thought that maybe this is due to any type of media, so I changed the type of chart to display as a jpg file instead of flash. And it fully loads in IE. Thus, something is stopping IE from receiving data from the flash.
Here is what I have done so far - and so far no luck:
- Added to HTML header:
<META
HTTP-EQUIV="CACHE-CONTROL"
CONTENT="NO-CACHE"><META
HTTP-EQUIV="EXPIRES" CONTENT="01 Jan
1970 00:00:00 GMT"><META
HTTP-EQUIV="PRAGMA"
CONTENT="NO-CACHE"> - Added random GET name with arbitrary value to call URL
- Changed ajax method from GET to POST
- Changed the ajax retreival method for .ajax with the cache set to false.
Any suggestions or ideas are welcome. Thank you in advance!
source
share