Forum Moderators: open

Message Too Old, No Replies

flash file loads twice in AJAX

         

Marfola

1:40 pm on Feb 19, 2010 (gmt 0)

10+ Year Member



When I load flash content on an ajax page it evokes 2 calls. The first loads the first 64 KB, the second loads the remainder.

Has anyone encountered this problem? Do you know of a workaround?

Marfola

3:05 pm on Feb 26, 2010 (gmt 0)

10+ Year Member



I found that command that caused flash to break and load twice.

$('#content').html(responseText);


When substituted with the analogous JavaScript the problem disappeared.

document.getElementById('content').innerHTML=responseText;