Skip to content
Advertisement

Possible to execute script when loading local html file?

I am clicking on a link and loading in an html file which consist of:

JavaScript

I then add this into a div on my page and it looks like:

enter image description here

the script never executes…

What am I missing?

Loading the html like this:

JavaScript

Advertisement

Answer

Yep, modifying innerHTML won’t evaluate the script tags it inserts.

You might want to do something like

JavaScript

after you load in the new HTML.

You could also do e.g. script.parentNode.removeChild(script) instead of the dataset trick, but this is more useful for debugging.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement