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?