I tried to load PDF file in IFrame. it is working with FF and Chrome but does not load in IE. IE asking to save or open to file instead of load in IFrame. I am loading file using javascript.
I am using following code :
<html>
<head>
<script type="text/javascript">
function setPDF() {
var iframe = document.getElementById('iframe1');
iframe.src = "pdffile/sample1.pdf";
}
</script>
</head>
<body>
<iframe id="iframe1"></iframe>
<input type="button" value="Click" onclick="setPDF();" />
</body>
</html>
Please suggest me
Thanks