Jump to content

Making reCaptcha v2 asynchronouns


Recommended Posts

Hi,

PageSpeed is telling that I have to defer parse some javascript from reCaptcha code calling https://www.gstatic.com/recaptcha/api2/r20150624112436/recaptcha__en.js.

I found the code on the prestashop module which is:

	public function hookHeader()
	{
		//$this->context->controller->addJqueryUI('effects.shake');
		$this->context->controller->addJS($this->_path.'/js/front.js');
		$this->context->controller->addCSS($this->_path.'/css/front.css');
		return '<script src="https://www.google.com/recaptcha/api.js"></script>';
	}

I tried to add "async defer" inside the script tag, but it didn't work. Anyone knows how to load it asynchronously?

Thanks!

Link to comment
Share on other sites

  • 2 months later...
  • 4 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...