Second example from
http://api.jquery.com/jQuery.noConflict/ works for me fine (jquery tree menu + maxigallery 6.0)
Just wrap jquery script into:
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery’s $ can follow here.
});
// Code that uses other library’s $ can follow here.
</script>
Original jquery call was:
<script type="text/javascript">
$(function() {
$("#tree").treeview({
collapsed: true,
animated: "medium",
control:"#sidetreecontrol",
persist: "location"
});
})
</script>
New call:
<script type="text/javascript">
$.noConflict();
jQuery(document).ready(function($) {
$(function() {
$("#tree").treeview({
collapsed: true,
animated: "medium",
control:"#sidetreecontrol",
persist: "location"
});
})
});
// Code that uses other library’s $ can follow here.
</script>
Hope this helps