Title: Javascript not loading?
Last modified: August 20, 2016

---

# Javascript not loading?

 *  Resolved [adamdport](https://wordpress.org/support/users/adamdport/)
 * (@adamdport)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/javascript-not-loading-1/)
 * The plugin’s not working for me. Scrolling down the page does nothing. The #upprev_box
   div is being generated and the stylesheet is being loaded. If I manually remove
   the “display:none” property of the div, I can see the div. However, both Chrome
   and Firefox indicate that upprev.js is not in my list of sources.
 * Upon further inspection, the problem is that in my custom theme, I deregistered
   the wordpress default ‘jquery’ handle to use the copy hosted by google (performance
   tweak). This plugin hardcodes “jquery” as a wp_enqueue_script dependency. Changing
   it to “custom-jquery” to match my handle fixed it.
 * Marcin, consider adding an “advanced option” to either set this dependency manually,
   or ignore it altogether.
 * [http://wordpress.org/extend/plugins/upprev/](http://wordpress.org/extend/plugins/upprev/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Marcin Pietrzak](https://wordpress.org/support/users/iworks/)
 * (@iworks)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/javascript-not-loading-1/#post-3229412)
 * > Upon further inspection, the problem is that in my custom theme, I deregistered
   > the wordpress default ‘jquery’ handle to use the copy hosted by google (performance
   > tweak). This plugin hardcodes “jquery” as a wp_enqueue_script dependency. Changing
   > it to “custom-jquery” to match my handle fixed it.
 * Use deregister/register as ‘jquery’ not ‘custom-jquery’.
 *     ```
       wp_deregister_script( 'jquery' );
       wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js' );
       ```
   
 * `upprev.js` – give me a website url.

Viewing 1 replies (of 1 total)

The topic ‘Javascript not loading?’ is closed to new replies.

 * ![](https://ps.w.org/upprev/assets/icon.svg?rev=1268272)
 * [upPrev](https://wordpress.org/plugins/upprev/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/upprev/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/upprev/)
 * [Active Topics](https://wordpress.org/support/plugin/upprev/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/upprev/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/upprev/reviews/)

## Tags

 * [javascript](https://wordpress.org/support/topic-tag/javascript/)
 * [jquery](https://wordpress.org/support/topic-tag/jquery/)

 * 1 reply
 * 2 participants
 * Last reply from: [Marcin Pietrzak](https://wordpress.org/support/users/iworks/)
 * Last activity: [13 years, 6 months ago](https://wordpress.org/support/topic/javascript-not-loading-1/#post-3229412)
 * Status: resolved