Skip to content Skip to sidebar Skip to footer

Conflict Between Jquerys

i have a problem when i made lot of jquery fonctions on the same file it did not work. I try to use de jQuery.noConflict() fonction but it didn't work(maybe i didn't use it in a g

Solution 1:

I find the solution .The solution is to use noConflict function like that :

<script>var jq172 = jQuery.noConflict();
jq172(document).ready(function()
{
   var jQueryTabs1Opts =
   {
      event: 'click',
      collapsible: false
   };
   jq172("#jQueryTabs1").tabs(jQueryTabs1Opts);
}); 
</script>

Solution 2:

Your code should work if you remove the duplicate import.

Remove this line :

<scripttype="text/javascript"src="jquery.js"></script>

Pay attention to the version of jQuery needed by the UI libraries you import.

Post a Comment for "Conflict Between Jquerys"