- Code: Select all
<noscript>
<iframe src="{RECAPTCHA_SERVER}/noscript?k={RECAPTCHA_PUBKEY}{RECAPTCHA_ERRORGET}" height="300" width="500" frameborder="0"></iframe><br/>
<textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript>
In xhtml strict, its invalid for there to be textarea or input in a noscript tag. They need a parent such as a div or dl. As well as the br tag needing a space in between br and /.
Oh and the dl tag can't have script or noscript as a child but dd can.