0 votes
in JQuery by
What is jQuery.noConflict?

1 Answer

0 votes
by
Usually, JS functions and variables use $ as a name. In jQuery, $ is just an alias for jQuery, so we don’t need to use $. If we have to use a JS library along with jQuery, the control of $ is given to the JS library. To give this control, we use jQuery.noConflict(). It is also used to assign a new name to a variable.

var newname = jQuery.noConflict();

Related questions

0 votes
asked Nov 20, 2020 in JQuery by sharadyadav1986
0 votes
asked Nov 20, 2020 in JQuery by sharadyadav1986
...