How to retrieve the content of <script src="myscript.ms"></script>
- by mikl0
if it was inline instead of src it would be easy to use innerHTML however it returns blank...so i assume the src attribute makes the content of myscript.ms not go into the dom as it normally does for inline script.
How can I access the data in myscript.ms file short of using some internal browser extension method?
Thanks.