🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

Use jQuery.noConflict() Method to Avoid Conflicts Between JS Libraries

Reading time 2 min
Published Dec 29, 2017
Updated Sep 27, 2019

The majority of JavaScript libraries apply $ symbol for variable names and methods. jQuery is not an exception. Therefore, as multiple frameworks use $ and their application is different, it is recommended to apply the jQuery.noConflict() method to make sure there are no conflicts between JavaScript libraries.

By applying the jQuery.noConflict() method, you will create a no-conflict setting, in which different libraries can work in harmony. If you want to replace the $ symbol with another keyword or sign, there is also an option to create a new alias for jQuery.

jQuery noConflict: Main Tips

  • While the jQuery library uses the $ symbol as a shortcut, other frameworks might potentially use it as well.
  • The jQuery.noConflict() method makes it so the $ symbol does not represent jQuery anymore.
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Method Explained

The $ symbol is used as a shortcut for jQuery to make writing the code more convenient. However, there are other JavaScript frameworks which can utilize this symbol differently. If such a clash occurs, some symbols might stop functioning.

To avoid unnecessary malfunctions, the jQuery no conflict method was introduced. After it is applied, $ shortcut does not belong to jQuery anymore. In other words, jQuery.noConflict() resolves potential conflicts with different frameworks that use this symbol differently than jQuery.

To achieve that, you should write jQuery instead of the shortcut. Take a look at the syntax that applies to this method:

jQuery.noConflict([removeAll])

removeAll is a boolean value (false by default) which is used for specifying whether all jQuery variables from the global scope should be removed or not.

Here is a simple example of using the jQuery.noConflict() method:

Example
$.noConflict();
jQuery(document).ready(() => {
    jQuery("button").click(() => {
        jQuery("p").text("Hey jQuery is working!");
    });
});

In addition to this, it is also possible to create your own shortcut for jQuery:

Example
var query = $.noConflict();
query(document).ready(function(){
    query("button").click(function(){
        query("p").text("Hey jQuery is working!");
    });
});

If you have a block of jQuery code which uses the $ shortcut and you do not want to change it all, you can pass the $ sign in as a parameter to the prepared method. This allows you to access jQuery using $ inside this function. However, outside of it, you will have to use the full name of jQuery:

Example
$.noConflict();
jQuery(document).ready(($) => {
    $("button").click(() => {
        $("p").text("Hey jQuery is working!");
    });
});

jQuery noConflict: Summary

  • jQuery introduced a function to make it possible to avoid clashes with other JavaScript libraries.
  • The jQuery no conflict mode can be reached with the jQuery.noConflict() function. It means that $ symbol will no longer be a shortcut for jQuery.