How to avoid HTML escaping in noscript tag when including content using SSI

1k Views Asked by At

I have a jsp page with

<noscript>
    <!--#include virtual="path" -->
</noscript>

The include contains Text Result which I expect is the "Text" displayed in the browser. Instead of that I get "Text" displayed in the browser. Can I somehow render that HTML correctly?

UPDATE: When I enter on the page first time, raw HTML is displayed, but when I enter on the page second time, HTML is rendered correctly, and I get only "Text" text.

1

There are 1 best solutions below

0
On BEST ANSWER

My issue was caused by bug in chrome. More details here: https://code.google.com/p/chromium/issues/detail?id=232410