I'm trying to use jQuery Load() function for reading word document(docx) content and set it between paragraph tags of body in html document. But there is a problem with character encoding as in picture below.
<script>
function loadworddoc() {
$("#textHolder").load("Licence/licence.docx");
}
</script>
HTML:
<p id="textHolder"></p>
<a href="#" onclick="javascript:loadworddoc()">Load</a>
How can I solve it?
Any answers will be appreciated!