Hi all,
I'm developing a webpage that has an iframe and a footer. The iframe source is an external url. This is my page:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><metahttp-equiv="Content-Type"content="text/html; charset=ISO-8859-1"><title>Test </title><styletype="text/css"> html, body, div, iframe { margin:0; padding:0; height:100%; } iframe { display:block; width:100%; border:none; }</style></head><body><iframesrc="http://test.com/"></iframe></body></html>
The external URL, opens correctly in the iframe. My problem is when I click on a link in the page inside the iframe. It opens the iframe source and not the clicked link. The links in the page are like this:
<ahref="?controller=produtos&method=lista&pagina=2">Link</a>
I do not have access to the external page. I repeat, I cannot change anything in the external page.
The iframe works correctly in Firefox, but not in Internet Explorer.
There is any way, to make the external page works correctly on the iframe in Internet Explorer?
Thanks in advance.