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>
Post a Comment for "Conflict Between Jquerys"