Lazy Loading and noscript
-
I’m working with a plugin Contact Form 7 – reCaptcha v2 and I have both this plugin and the reCaptcha plugin enabled. The lazy load plugin seems to display the contents of
<noscript>
tags. Here’s thenoscript
tag from the reCaptcha plugin:<noscript> <div class="grecaptcha-noscript"> <iframe src="<?php echo esc_url( $url ); ?>" frameborder="0" scrolling="no" width="310" height="430"></iframe> <textarea name="g-recaptcha-response" rows="3" cols="40" placeholder="<?php esc_attr_e( 'reCaptcha Response Here' ); ?>"></textarea> </div> </noscript>
Whenever the A3 Lazy Load plugin is active, it breaks the
<textarea>
tag out of thenoscript
and displays it to the website ( where normally it shouldn’t ). Any ideas why this may be happening and how it can be prevented?
- The topic ‘Lazy Loading and noscript’ is closed to new replies.