I have found loads of answers (most concerning wordpress) but nothing that quite helps. I'm new to css/jquery so need my hand held a little. Ive tried this but unable to get it to work Can I use multiple versions of jQuery on the same page?
My code is here:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="js/jquery.slicknav.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#menu').slicknav();
});
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
var jQuery_1_7_2 = $.noConflict(true);
</script>
<script>window.jQuery || document.write('<script src="js/jquery-1.7.2.min.js"><\/script>')
</script>
<script src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript">
var jQuery_1_9_1 = $.noConflict(true);
</script>
<script src="js/owl.carousel.js"></script>
Ive used source code for two elements on my page, one calls jquery-1.7.2.min.js and the other jquery-1.9.1.min.js.
1.7.2 controls my responsive navbar while 1.9.1 is used by an image carousel. At the moment the carousel version overrules the navbar (disappears).
Any ideas how i can resolve this conflict?