1
Answer

How to resolve confilt between jqury ui.js and bootsrap,js

Susanta Rout

Susanta Rout

8y
308
1
how  resolve conflicts between  jquery ui.js's function with bootstrap.js's function...but some design not working perpoerly of jquery ui
Answers (1)
0
Vsd Vsd

Vsd Vsd

NA 433 16.8k 8y

As you already know,jQuery uses the $ sign as a shortcut for jQuery.There are many other popular JavaScript frameworks like: Angular, Backbone, Ember, Knockout, and more.If two different frameworks are using the same shortcut, one of them might stop working.The jQuery team have already thought about this, and implemented the noConflict() method

 
 
  1.  
    <script>
    var jq = $.noConflict();
    jq(document).ready(function(){
    jq("button").click(function(){
    jq("p").text("jQuery is still working!");
    });
    });
    </script>