Posts: 4,264
Name: Sugarcane Gray
Location: Hell, Southern Spain
|
I'm working on a site right now that has a jQuery carousel and a jQuery lightbox (colorbox) for login purposes.
I can't get them to both work. It seems like the one that's called last in the document head works, the first one doesn't. The head code is:
HTML Code:
<head>
<title>**** // Jeans and Stuff</title>
<link href="css/reset.css" type="text/css" rel="stylesheet" media="screen"/>
<link href="css/styles.css" type="text/css" rel="stylesheet" media="screen"/>
<link href="css/slider.css" type="text/css" rel="stylesheet" media="screen"/>
<!-- colorbox -->
<link media="screen" rel="stylesheet" href="css/colorbox.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="js/jquery.colorbox.js"></script>
<script>
$(document).ready(function(){
//Examples of how to assign the ColorBox event to elements
$(".login").colorbox();
});
</script>
<!-- carousel -->
<script src="js/jquery-1.2.6.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery-ui-full-1.5.2.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
window.onload = function () {
var container = $('div.sliderGallery');
var ul = $('ul', container);
var itemsWidth = ul.innerWidth() - container.outerWidth();
$('.slider', container).slider({
min: 0,
max: itemsWidth,
handle: '.handle',
stop: function (event, ui) {
ul.animate({'left' : ui.value * -1}, 500);
},
slide: function (event, ui) {
ul.css('left', ui.value * -1);
}
});
};
</script>
</head>
So in the above example, the carousel works but the colorbox doesn't. When I put the colorbox code underneath the carousel, that works, but the carousel remains annoyingly static.
being no expert in javascript, I'm stuck. I have a hunch it's something to do with the differing versions of jQuery the two scripts are calling. Am I right or totally off here?
Any help would be much appreciated.
__________________
Please login or register to view this content. Registration is FREE - a project in video and sound.
Please login or register to view this content. Registration is FREE "Absolute Rubbish, an insult to the blues." - NME.
Please login or register to view this content. Registration is FREE - Come use our agency :)
Last edited by edgray; 03-02-2011 at 10:18 AM..
|