i need embed external site without iframe i don"t find any code work for me ..if one genies here ans my questions i appreciate it..
You can try cURL. Download your websites content and echo it to a div or something like that. Note: This isn't HTML anymore.
Hi, You can try this: <!--[if IE]> <object classid="clsid:25336920-03F9-11CF-8FD0-00AA00686F13" data="http://www.google.be"> <p>backup content</p> </object> <![endif]--> <!--[if !IE]> <--> <object type="text/html" data="http://www.flickr.com" style="width:100%; height:100%"> <p>backup content</p> </object> <!--> <![endif]--> HTML:
Hi, It depends on which method you prefer. The first will be based on php, in which you can get all site content via php and display on your page. echo file_get_contents('http://www.google.de'); PHP: or Via jQuery Ajax where you can use this code to get it done. $.ajax({ url: "http://www.website.com", type: 'GET', success: function(res) { var text = res.responseText; // then you can manipulate your text as you wish } }); HTML:
The proper element to use is "object". For example: <!DOCTYPE html> <html> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>test document</title> <base href="#"> <style type="text/css"> /*<![CDATA[*/ html, body { font: 100%/1.5 sans-serif; margin: 0; } /*]]>*/ </style> </head> <body> <p><object data= "https://forums.digitalpoint.com/threads/embed-an-external-page-without-an-iframe.2663112/" type="text/html"> <p>If nothing showed up except this text, <a href= "https://forums.digitalpoint.com/threads/embed-an-external-page-without-an-iframe.2663112/"> click here to access the page directly</a></p> </object></p> </body> </html> Code (markup): cheers, gary