Title: [Plugin: Mini twitter feed] jQuery conflict
Last modified: August 20, 2016

---

# [Plugin: Mini twitter feed] jQuery conflict

 *  Resolved [paulkrix](https://wordpress.org/support/users/paulkrix/)
 * (@paulkrix)
 * [14 years ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/)
 * Great plugin, love it.
    However WordPress uses jQuery in noConflict mode so using
   the $ in your javascript can cause conflicts (as happened to me). If you just
   change line 92 of mini-twitter-feed.php from: $(“.content_tweets_’.$this->get_field_id(‘
   id’).'”).miniTwitter({ to: jQuery(“.content_tweets_’.$this->get_field_id(‘id’).'”).
   miniTwitter({ then it works well for me.
 * [http://wordpress.org/extend/plugins/mini-twitter-feed/](http://wordpress.org/extend/plugins/mini-twitter-feed/)

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

 *  Plugin Author [oniswap](https://wordpress.org/support/users/webdevdesigner/)
 * (@webdevdesigner)
 * [14 years ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/#post-2750203)
 * Thank you for your message! It will be added in the next update.
 *  [avioli](https://wordpress.org/support/users/avioli/)
 * (@avioli)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/#post-2750399)
 * By the way you are using `wp_deregister_script('jquery');` and then loading the
   latest version from Google’s Ajax Library – this is not a wise move.
 * I do have scripts that don’t work with the latest version and your plugin is 
   forcing my website to use it.
 * Better use simply `wp_enqueue_script('jquery');` or check jquery version within
   your script if you require latest and greatest and notify the user of your implied
   version!
 *     ```
       global $wp_scripts;
       if ( isset( $wp_scripts->registered['jquery'] ) && ( version_compare( $wp_scripts->registered['jquery']->ver, '1.7.2', '>=' ) ) ) {
         print_r('go go go');
       }
       ```
   
 *  [avioli](https://wordpress.org/support/users/avioli/)
 * (@avioli)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/#post-2750400)
 * BTW if you put the last bit of code inside a `wp_enqueue_scripts` action, you’ll
   ensure that $wp_scripts is ready to use.
 *  Plugin Author [oniswap](https://wordpress.org/support/users/webdevdesigner/)
 * (@webdevdesigner)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/#post-2750401)
 * BTW thank you for your messages, I will check it and find a way to not force 
   the use of the last jquery version.

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

The topic ‘[Plugin: Mini twitter feed] jQuery conflict’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/mini-twitter-feed_aed2e8.svg)
 * [Mini twitter feed](https://wordpress.org/plugins/mini-twitter-feed/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mini-twitter-feed/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mini-twitter-feed/)
 * [Active Topics](https://wordpress.org/support/plugin/mini-twitter-feed/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mini-twitter-feed/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mini-twitter-feed/reviews/)

 * 4 replies
 * 3 participants
 * Last reply from: [oniswap](https://wordpress.org/support/users/webdevdesigner/)
 * Last activity: [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-mini-twitter-feed-jquery-conflict/#post-2750401)
 * Status: resolved