jQuery.noConflict

jQuery.noConflict() function

The jQuery remove the conflicts the global function and to define variables using jQuery.noConflict().

For example, If you used the jQuery and other tools both are using use $() as their global function and to define variables. In that situations conflicts the  global function and define variables. The using jQuery.noConflict() function we avoid  or remove the client side libraries conflicts. we can create custom specific character in the place of $ sign in jQuery.

The example in detail as given below.

jQuery.noConflict();
// Use jQuery via jQuery(...)

$(document).ready(function () {
    $("div").hide();
});
OR

jQuery (document).ready(function () {
    jQuery ("div").hide();
});

OR

$(function () {
    $("div").hide();
});

We can use and create your custom specific character in the place of $ sign in jQuery. i.e.

var $jQ = jQuery.noConflict();
// Use jQuery via jQuery(...)

$jQ(document).ready(function () {
    $jQ("div").hide();
});
OR

$jQ(function () {
    $jQ("div").hide();
});



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

jQuery.noConflict() function jQuery.noConflict() function Reviewed by Anil Singh on 6:00 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^