Search code examples
htmlflashembedding

loading an external HTML file with ajax which has a FLASH app embedded


I need to load contents of an external html document through AJAX. The problem is the external page has some Flash application embedded. Now I need to show this html with the embedded flash in my own webpage...
Is this even possible?


Solution

  • Well I figured it out myself...
    this works fine for me:

     <div align="center" id="flexDiv">
        <p>
          <object id="external" name="foo" type="text/html" data="http://alimsyed.com">
          </object>
        </p>
      </div>