jquery conflict

ophilium

New Member
Does anyone see anything wrong with the following set up? I can get the image viewer and codaslider working but not the lava lamp nav effect or the reverse.....but not all.

<script type='text/javascript' src='js/jquery.js'></script>
<script src="js/jquery.scrollTo-1.3.3.js" type="text/javascript"></script>
<script src="js/jquery.localscroll-1.2.5.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.serialScroll-1.2.1.js" type="text/javascript" charset="utf-8"></script>
<script src="js/coda-slider.js" type="text/javascript" charset="utf-8"></script>
<!--ceebox viewer-->
<script type='text/javascript' src='js/jquery.swfobject.js'></script>
<script type='text/javascript' src='js/jquery.metadata.js'></script>
<script type='text/javascript' src='js/jquery.color.js'></script>
<script type='text/javascript' src='js/jquery.ceebox.js'></script>
<script type='text/javascript' src='js/jquery.validate.js'></script>
<!--lavalamp-->
<script type='text/javascript' src='js/jquery.lavaYo.js'></script>
<script type='text/javascript' src='js/jquery.easing.js'></script>

<script type="text/javascript">

$(document).ready(function(){

$(".ceebox").ceebox();



$("#form1").validate({
rules: {
name: "required",// simple rule, converted to {required:true}
email: {// compound rule
required: true,
email: true
},
url: {
url: true
},
comment: {
required: true
}
},
messages: {
comment: "Say something you"
}
});


$("#contactLink").click(function(){
if ($("#contactForm").is(":hidden")){
$("#contactForm").slideDown("slow");
}
else{
$("#contactForm").slideUp("slow");
}
});

$("#contactLink2").click(function(){
$("#contactForm").slideUp("slow");

});


});



function closeForm(){
$("#messageSent").show("slow");
setTimeout('$("#messageSent").hide();$("#contactForm").slideUp("slow")', 2000);
}

$(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700 })});
 

emilyl

New Member
jQuery is a great javascript library that makes your javascript development more interestin, exciting and effective.
 
Top