E1 Pages acess external web site

tatscub

tatscub

Member
Hi all,
I'm currently working on a project using E1 Pages and in the main I have found them very quick and easy to work with how ever one of my requirements is to embed an external website . its not to tricky to do that in the HTML im using the following (just using google as an example

<div class="holder">
<div class="webBox">
<object data=http://www.google.com width="1200" height="600"> <embed src=http://www.google.com width="1000" height="600"> </embed> Error: Embedded data could not be displayed. </object>
</div>
</div>


it works fine in the HTML , and when I render my page and open it in a browser I have no problems but . once ive zipped it up and uploaded it into JDE then viewed my e1 page I get the Embeded data could not be displayed error message . I guess im missing something fairly basic here probably to do with security ? or internal JDE settings has any one managed to use external URL's in e1 pages and if so can you help me work out where I'm going wrong I'd be very greatfull for any help you can give me

thank you

Charlie
 
hello All I have found a solution here also using an object HTML tag still produces the same issue however when I embed a web page using an iframe tag it resolves nicely . very weird in deed so just aheads up guys if your struggling to gt embedded web page to work in your E1 pages try using syntax like

<div class="holder">
<div class="webBox">
<iframe name="myframe" src="http://www.google.co.uk" width="100%" height="700" marginwidth="0" marginheight="0" frameborder="0" scrolling=auto></iframe>
</div>
</div>

it seems to work nicely
 
Back
Top