i,ve the same problem....
i,ve the same problem.....
can anyone help me..
there are 2 jqueries in my page...
here is the one.....
<script type="text/javascript" src="jquery.beforeafter.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.1/jquery-ui.min.js"></script>
<script type="text/javascript">
$(function(){ $('#container').beforeAfter({animateIntro:true,imagePath:''});});
</script>
<script type="text/javascript">
//create this naming for Jquery 1.3.2 version
var jQuery_1_3_2 = $.noConflict(true);
</script>
and under that...
the 2nd ....
<script type="text/javascript" src="js/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="js/jquery-jvert-tabs-1.1.4.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#vtabs1").jVertTabs();
$("#vtabs2").jVertTabs({
selected: 1
});
$("#vtabs3").jVertTabs({
select: function(index){
alert("You clicked tab " + index);
}
});
$("#vtabs4").jVertTabs();
$("#vtabs5").jVertTabs({
equalHeights: true
});
$("#vtabs6").jVertTabs({
select: function(index){
alert("tab " + index + " opened.");
}
});
$("#vtabs6").jVertTabs('selected',3); // select 4th tab, 0-based.
$("#vtabs7").jVertTabs({
selected: 1
});
$("#vtabs8").jVertTabs();
$("#vtabs8").jVertTabs('selected',2); // select 3rd tab, 0-based.
// add click events for open tab buttons
$("input[id^=openTab]").each(function(index){
$(this).click(function(){
openTab("#vtabs6",index);
return false;
});
});
function openTab(tabId,index){
$(tabId).jVertTabs('selected',index);
}
});
</script>
f i remove first 1... than second1 start working....
.what's the solution to workout both jqueries?????
|