I am a student and don't have much background in the code development field. I just have my website running and want to put jetmenu under my template (that's it!).
Here's the jetmenu
http://codecanyon.net/item/jet-responsive-megamenu/5719593
But once I put under the template, it's working only the parent menu, while the submenu itself won't work at all. I tried to open firebug and it said the "!@#@!@# is not a function"
Browse the web, and found the problem. That is, the template is using 2 library of jQuery in different version. Trying to implement some techie trick in noConflict but always no luck.
Here's the code.
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" type="text/javascript"></script>
<script>
sQuery = jQuery.noConflict(true);
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script>
jQuery(document).ready(function() {
jQuery().jetmenu();
});
</script>
<script src="{$baseurl}/js/jetmenu.js"></script>
<script src="{$baseurl}/js/jquery.customSelect.js"></script>
I thought first I can refer like "xxQuery = jQuery.noConflict(true)" but if it needs to edit the whole the jquery code using the library (replace the $ with xxjQuery) will waste of time.