user2104778
user2104778

Reputation: 1060

Display external pdf in frame with javascript

Exactly that. Can it be done? I.e. can I use javascript to load in a frame a pdf from an external website?

Upvotes: 0

Views: 1071

Answers (1)

David
David

Reputation: 219117

Of course you can...

<iframe id="someFrame" />

<script type="text/javascript">
    document.getElementById('someFrame').src = 'http://somesite.com/somefile.pdf';
</script>

Upvotes: 1

Related Questions