issue with jquery drag n drop and lightbox2
It seems that when you have a page with both the query drag n drop and
lightbox2, the jquery drag n drop doesn't work anymore if i comment
out the lightbox code like i have done below:
<!--draggable navigation code-->
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
jquery-1.3.2.js"></script>
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
ui.core.js"></script>
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
ui.draggable.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#navigation").navigation();
});
</script>
<!--/draggable navigation code-->
<!--lightbox code
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
lightbox/js/prototype.js"></script>
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
lightbox/js/scriptaculous.js?load=effects,builder"></script>
<script type="text/javascript" src="<?php echo $siteurl; ?>style/
lightbox/js/lightbox.js"></script>
-->
They both work fine if on their own but they can't seem to work
together, does anyone know a fix for this?