Javascript examples for DOM HTML Element:Embed
You can create an <embed> element by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create an EMBED element with an embedded flash animation</button> <script> function myFunction() {// ww w . j a va 2 s . c o m var x = document.createElement("EMBED"); x.setAttribute("src", "helloworld.swf"); document.body.appendChild(x); } </script> </body> </html>