I inserted the following code in a WordPress plugin:
wp_deregister_script(\'jquery\'); wp_register_script(\'jquery\', \"http://ajax.go
I was facing this issue with
WP Rocket plugin which was adding type='text/rocketscript' to the script tags.
type='text/rocketscript'
Fixed it by adding
data-cfasync="false"
to the script tags.