Title: WP Socializer causes many Javascript errors
Last modified: August 20, 2016

---

# WP Socializer causes many Javascript errors

 *  Resolved [johannes3](https://wordpress.org/support/users/johannes3/)
 * (@johannes3)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/)
 * hi,
 * without WP Socializer i’ve no errors, but if the plugin is enabled most of other
   jscripts wont work anymore.
 * errors:
 *     ```
       Uncaught TypeError: Cannot read property 'msie' of undefined jquery.tools.min.js:19
       (anonymous function)jquery.tools.min.js:19
       (anonymous function)jquery.tools.min.js:20
       The "fb-root" div has not been created, auto-creating all.js:49
       FB.getLoginStatus() called before calling FB.init(). all.js:49
       Uncaught TypeError: Cannot read property 'msie' of undefined jquery.fancybox.js:18
       (anonymous function)jquery.fancybox.js:18
       (anonymous function)jquery.fancybox.js:46
       Uncaught TypeError: Cannot read property 'msie' of undefined responsive-scripts.js:6
       (anonymous function)responsive-scripts.js:6
       Uncaught TypeError: Object [object Object] has no method 'tinyNav' responsive-plugins.js:20
       (anonymous function)responsive-plugins.js:20
       Uncaught TypeError: Object [object Object] has no method 'fancybox' shashin.js:22
       (anonymous function)shashin.js:22
       fjquery.min.js:1
       p.fireWithjquery.min.js:1
       st.extend.readyjquery.min.js:1
       xt
       ```
   
 * jquery v. 1.9.0
    wp 3.5 tested with WP Socializer javascript load on header and
   footer.
 * thanks for any help
 * [http://wordpress.org/extend/plugins/wp-socializer/](http://wordpress.org/extend/plugins/wp-socializer/)

Viewing 12 replies - 1 through 12 (of 12 total)

 *  [danimalweb](https://wordpress.org/support/users/danimalweb/)
 * (@danimalweb)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368833)
 * If you are using the latest version of jQuery they changed somethings last night
   which showed the error: Uncaught TypeError: Cannot read property ‘msie’ of undefined
   on my site, and all the other scripts stopped working too.
 * The plugin might be pulling the latest version, in which case change it to an
   older version of wordpress. Check the plugin homepage.
 *  [mixaelll16](https://wordpress.org/support/users/mixaelll16/)
 * (@mixaelll16)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368837)
 * i have same problem … of last night my site is crash because ‘WP Socializer’,
   i cant see half my page … when i deactive all is ok … 🙁
 *  [acorderob](https://wordpress.org/support/users/acorderob/)
 * (@acorderob)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368883)
 * Until the author updates the plugin you can edit wp-socializer.php, and replace
   line 1080 with:
 * `wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/
   jquery.min.js"), false, WPSR_VERSION);`
 * So it registers the previous version of jquery that works.
 * And to the author: i’m concerned that the plugin has to re-register jquery. I
   suppose this was necesary when wordpress had an older version of jquery, but 
   now it is not.
 *  [trevone](https://wordpress.org/support/users/trevone/)
 * (@trevone)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368884)
 * or in wp-socializer.php go to line 1077 and comment out the jquery register stuff
 * agreed, concerned
 *     ```
       if( !is_admin()){<br />
       	// jQuery<br />
       	//wp_deregister_script('jquery');<br />
       	//wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"), false, WPSR_VERSION);<br />
       	//wp_enqueue_script('jquery');<br />
       }
       ```
   
 *  [webdesk.co.il](https://wordpress.org/support/users/webdesk/)
 * (@webdesk)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368899)
 * Thank you guys for posting a solution so quickly! Thanks to you my site is functioning
   again (after hours of trying to figure out what’s wrong)
 *  Thread Starter [johannes3](https://wordpress.org/support/users/johannes3/)
 * (@johannes3)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368903)
 * yeah. Thanks a lot guys!
 *  [Mike Zielonka](https://wordpress.org/support/users/mikezielonka/)
 * (@mikezielonka)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368945)
 * Same issue here!
 * Nice patch!
 *  [robintime](https://wordpress.org/support/users/robintime/)
 * (@robintime)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368985)
 * After freaking out (privately) about an unexpected change on my site, the great
   guys over at EventEspresso told me about the solution above which I hadn’t seen
   on my own. Easy to implement and the problem was fixed.
 *  [llworldtour](https://wordpress.org/support/users/llworldtour/)
 * (@llworldtour)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3368995)
 * Similar problem here – it was causing my slider and a collapsible widget to not
   work right. Thanks for help guys.
    Which sol’n above is best…changing line 1077
   OR 1080? Thanks!!
 *  [llworldtour](https://wordpress.org/support/users/llworldtour/)
 * (@llworldtour)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3369002)
 * It seems they just updated the plug-in and fixed it.
 *  Thread Starter [johannes3](https://wordpress.org/support/users/johannes3/)
 * (@johannes3)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3369015)
 * and after update my site is also broken but without jscript error.
    the plugin
   is gone from wordpress directory maybe its better.
 * have anyone an alternative?
 *  Plugin Author [vaakash](https://wordpress.org/support/users/vaakash/)
 * (@vaakash)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3369055)
 * @johnnes3 The issue is fixed in v2.4.7
    The plugin is back to normal and is working
   like a charm.
 * [http://wordpress.org/extend/plugins/wp-socializer/](http://wordpress.org/extend/plugins/wp-socializer/)
 * Thank you.

Viewing 12 replies - 1 through 12 (of 12 total)

The topic ‘WP Socializer causes many Javascript errors’ is closed to new replies.

 * ![](https://ps.w.org/wp-socializer/assets/icon.svg?rev=1616975)
 * [WP Socializer - Simple & Easy Social Media Share Icons](https://wordpress.org/plugins/wp-socializer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-socializer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-socializer/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-socializer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-socializer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-socializer/reviews/)

 * 12 replies
 * 10 participants
 * Last reply from: [vaakash](https://wordpress.org/support/users/vaakash/)
 * Last activity: [13 years, 2 months ago](https://wordpress.org/support/topic/wp-socializer-causes-many-javascript-errors/#post-3369055)
 * Status: resolved