Let Learners create a Word document that can be saved on their computer.

Create a Raw HTML and enter the following code:

<textarea id="textArea" rows="10" placeholder="Enter your text here"
cols="90"></textarea>
<br/><br/><button type="button" value="save" id="save"> Save</button>
<script type="text/javascript">
function saveTextAsFile()
{
var textToWrite = document.getElementById('textArea').value;
var textFileAsBlob = new Blob([textToWrite], {type:'text/plain'});
var fileNameToSaveAs = "YourAnswer.doc";
var downloadLink = document.createElement("a");
downloadLink.download = fileNameToSaveAs;
downloadLink.innerHTML = "Download File";
if (window.webkitURL != null)
{
downloadLink.href = window.webkitURL.createObjectURL(textFileAsBlob);
}
else
{
downloadLink.href = window.URL.createObjectURL(textFileAsBlob);
downloadLink.onclick = null;
downloadLink.style.display = "none";
document.body.appendChild(downloadLink);
}
downloadLink.click();
}
var button = document.getElementById('save');
button.addEventListener('click', saveTextAsFile);
</script>

Click on “Save” button

Learner platform display :

Login to leave your feedback!

Leave a Reply

You must be logged in to post a comment.