I have 2 jquiry scripts which needs to be loaded on the same page.
When only using 1 of them they don't work both.
I need to have some kind of noconflict on it.
Below script didn't work when paste it like that.
<script src='js/jquery-1.4.2.min.js'></script>
<script>
var jq142 = jQuery.noConflict();
</script>
<script src='js/jquery-1.6.2.min.js'></script>
<script>
var jq162 = jQuery.noConflict();
</script>
This is part (first lines) of the 1.6.2 script:
$(document).ready(function() {
$('.fancybox').fancybox();
$('.fancybox')
This is part (first lines) of the 1.4.2 script:
var $container;
$(document).ready(
function() {
$container = $("#container");
$container.wtRotator({
I really need those 2 to work, I have tried all other versions etc.
Anyone have a clue?