I am embedding a pdf document on a HTML5 page using a code similar with:
<div style="background: transparent url(loading.gif) no-repeat">
<object height="1250px" width="100%" type="application/pdf" data="aaa.pdf">
<param value="aaa.pdf" name="src"/>
<param value="transparent" name="wmode"/>
</object>
</div>
(answer for this question)
At some moment in time I would want to reload the embeded pdf file without reloading the entire page. How can this be made?
You could use javascript to rewrite the innerHTML of the containing div. So give it an id and then when you decide to reload reassign the contents of this div: