Display .doc inside a div

Viewed 12382

It is possible to display a pdf inside a div using this:

<div>
    <object data="test.pdf" type="application/pdf" width="300" height="200">
    PDF : <a href="test.pdf">test.pdf</a>
    </object>
</div>

Is it possible to do something similar for a .doc or .docx? (without server side)

  • I am assuming the browser or the computer has a way of reading the data.
2 Answers
Related