Given the code:
<noscript><div>FOO</div></noscript>
Launch
$('noscript').html();
returns <div>FOO</div>
but it works
$('noscript').text();
returns raw html.
This is the opposite of what I expected. Is there any explanation for this?
Christopher
source
share