Download original file
Loading document…
'; var iframe = document.createElement('iframe'); iframe.style.cssText = 'position:fixed;right:0;bottom:0;width:0;height:0;border:0'; document.body.appendChild(iframe); var d = iframe.contentWindow.document; d.open(); d.write(html); d.close(); iframe.contentWindow.focus(); setTimeout(function(){ iframe.contentWindow.print(); setTimeout(function(){ document.body.removeChild(iframe); }, 1000); }, 300); }); // DOWNLOAD EDITED DOCX document.getElementById('ode-docx').addEventListener('click', function(){ var html = '' + '' + '' + getContent() + ''; var blob = htmlDocx.asBlob(html); var a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = (u.pathname.split('/').pop().replace(/\.docx$/i,'') || 'document') + '-edited.docx'; document.body.appendChild(a); a.click(); setTimeout(function(){ URL.revokeObjectURL(a.href); a.remove(); }, 1000); }); })();