Skip to content
Advertisement

How to disable parsing code in script tags using JavaScript DOMParser?

I have the following text file with JavaScript tags:

JavaScript

when I parse it like so:

JavaScript

I get an error because there are < and > symbols in JS program code, like

JavaScript

I don’t want to replace < > with &lt; &gt; because those are also present inside strings in the code.

Is it possible to disable parsing code inside script tags?

Advertisement

Answer

For parsing HTML, we use the mime type text/html

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