Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is WordPress placing "text/rocketscript" instead of "text/javascript" when using wp_register_script()?

Tags:

wordpress

I inserted the following code in a WordPress plugin:

   wp_deregister_script('jquery');    wp_register_script('jquery', "http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js");    wp_enqueue_script('jquery'); 

The following is echoed to the browser:

<script type='text/rocketscript' data-rocketsrc='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js?ver=3.3.1'></script> 

Instead of:

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'></script> 

I don't know what is happening. Perhaps wp_register_script() is supposed to work in this way. I also tested if any jQuery code worked on the client side but it didn't.

like image 226
Tabrez Ahmed Avatar asked Mar 13 '12 09:03

Tabrez Ahmed


People also ask

Do WordPress sites use JavaScript?

JavaScript can be used within the WordPress platform to add dynamic elements to pages and posts, or across your entire website. In this article we'll take a look at JavaScript, what it is, and how you can use it to enhance your WordPress digital experiences.

How do I disable JavaScript in WordPress?

You can use wp_deregister_script, this will remove unwanted JS,CSS from specific pages. Using the function described it recognizes the page(s), good. In the particular plugin there are 20+ js calls.


2 Answers

It is easy to fix.

You must change the following tag: <script type="text/javascript"></script>

add: data-cfasync="false"

example:

<script data-cfasync="false" type="text/javascript"></script> 
like image 51
Frank Avatar answered Sep 19 '22 19:09

Frank


Probably one of wordpress plugins is using CloudFlare.

https://support.cloudflare.com/hc/en-us/articles/200168056-What-does-Rocket-Loader-do-

Try disabling all the plugins and re-enabling them one by one to find out which one is causing this issue. It's not a problem actually.

like image 31
Emir Akaydın Avatar answered Sep 21 '22 19:09

Emir Akaydın



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!