Sveiki, tātad es vēlos vienā lapā ielikt 2 atšķirīgus jquery sliderus/karuseļus. Bet lieta tāda ka katram no karuseļiem vajag savu jQuery bibliotēku, problēma rodas tur ka ja ielieku abas jQuery versijas tad viņas savā starpā konfliktē un pareizi nestrādā neviens no slaideriem. Zinu ka ir iespējams to salabot izmantojot šo:

<script>
$.noConflict();

</script>
Bet man nav ne mazākās nojausmas kā to izmantot, ko tik es neizmēģināju bet tā pat nesanāca... Lūk saīsināts kods:

<!-- jquery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<!-- Other scripts -->
<script type="text/javascript">
$(function() {
$('a[href*=#]:not([href=#])').click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
});
</script>
<script type="text/javascript" src="js/jquery.orbit-1.2.3.js"></script>
<!--[if IE]>
<style type="text/css">
.timer { display: none !important; }
div.caption { background:transparent; filter:progid biggrin_mini2.gif XImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);zoom: 1; }
</style>
<![endif]-->

<!-- Run the plugin -->
<script type="text/javascript">
(window).load(function() {
$('#featured').orbit();
});
</script>
</head>
<body>
<div id="wrapper">
<section id="header">
PIRMAIS SLAIDERIS
</section>

<section id="games-section" class="clearfix">
<div id="ca-container" class="ca-container">
OTRAIS SLAIDERIS
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<!-- the jScrollPane script -->
<script type="text/javascript" src="js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="js/jquery.contentcarousel.js"></script>
<script type="text/javascript">
$('#ca-container').contentcarousel();
</script>
</section>
</div>
</body>

Kāds nevar iedot paraugu kā jāsaliek lai viss ietu? Diezgan steidzami vajag! Paldies!