Skip to content Skip to sidebar Skip to footer

Javascript And Iframe Not Supported In Browsers Other Than Ie

I run a simple html file with an iframe and javascript working fine in IE Browser, but it is not working in other browsers like safari,firefox. In safari the Iframe box is only dis

Solution 1:

You can use <embed> tag ,which behaves like iframe

Here is example

<!doctype html ><html ><head><title>embed  Tag </title></head><body><p><b>Example of embed tag in HTML5.</b></p><embedsrc="http://www.w3schools.com"height="300"width="300" /></body></html>

While you can also use iframes on all browser

Here is example

<!DOCTYPE html><html><body><iframesrc="http://www.w3schools.com"><p>Your browser does not support iframes.</p></iframe></body></html>

Are you trying to do any different for iframe ?

Post a Comment for "Javascript And Iframe Not Supported In Browsers Other Than Ie"