Answers for "javascript get text from html file"

1

html get text from file

<embed src="file.txt"> // This will show the text contained in file.txt in the page
Posted by: Guest on November-14-2020
1

read text file in javascript

fetch("file.txt")
	.then((response) => {
  		return response.text();
	})
	.then((text) => {
  		console.log(text);
	});
Posted by: Guest on October-05-2021

Code answers related to "javascript get text from html file"

Browse Popular Code Answers by Language