Considering the code:
<noscript><div>FOO</div></noscript>
Running
$('noscript').html();
returns <div>FOO</div>
but running
$('noscript').text();
returns the raw html.
This is the opposite of what I was expecting. Is there an explanation for this?