I've come up with a clever time-saving trick for my website template project. I want to streamline the process of changing large text files by having a separate plain text document that will automatically transfer its contents to a designated paragraph when the page loads.
For example:
The text document might look like this:
Introducing the new red glasses.
Upon loading the page, the paragraph's text would then be updated to match the content of the text document:
<p> Introducing the new red glasses. </p>
Is it feasible to achieve this functionality? I am open to using HTML, CSS, jQuery, and JavaScript to make it happen.