i.e. Different jquery frame works that i need to run my application smoothly was conflicting with each other.
If i implement 1, the other does not function well.
At last i came across the following technique while using jquery tabs.
<script>
var $t = jQuery.noConflict(); // assign the main jQuery object to $j
$t(function() {
$t("ul.leftsiteappslist").tabs("div.css-panes > div", {effect: 'ajax', history: true});
});
</script>
Now my conflict problem is solved.
No comments:
Post a Comment