Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

AccessPoint from IFRAME works on IE but not Firefox

I want to put link to AccessPoint in side an IFRAME. This is working well with IE 8.0 but not Firefox 3.5.7.

<html>

<div style="height:100%">

<iframe id="Iframe1"
src="http://platypus/QlikView/index.htm"
width="100%" height="100%">
</iframe>

</div>

</html>

1 Reply
Not applicable
Author

You will find lots of occasions where Firefox appears not to display a page, but IE does that are caused due to a badly formed HTML layout. IE 'guesses' what the page is supposed to look like; Firefox considers the guessing to be a security problem and generally drops the badly formed code.

Try using this code...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
</head>
<body>
<div style="height:100%">
<iframe id="Iframe1"
src="http://platypus/QlikView/index.htm"
width="100%" height="100%">
</iframe>
</div>
</body>
</html>

Of course, you did not say how it did not work. That might help.