Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Hello i've been tryng to use this library docx4js
https://www.npmjs.com/package/docx4js
to convert a docx document to html,this is my code, when i try to upload a document i get undefined,....i can't find any examples on this,...can someone help me?
<!DOCTYPE html>
<script src="docx4js.js"></script>
<script>
var Docx = require("docx4js");
let val = "";
let element;
function test(input) {
val = input.files[0];
Docx.docx.load(input.files[0]).then(function (docx) {
element = docx.render();
document.querySelector("#docx").innerHTML = element;
console.log(element);
console.dir(element);
</script>
</head>
<input
type="file"
style="position: absolute; top: 0"
onchange="test(this)"
<textarea id="text"></textarea>
<div id="docx"></div>
</body>
</html>
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.