Hi Folks,
Love the plugin - does exactly what I wanted but occasionally it gets caught up. On the following page:
http://casadelcastello.bytheraintree.com/index.php/apartment/inclusions/fitout
the images found in the Accordion work perfectly. However, the Floor Plan at the top - as soon as I include the rel="sexylightbox" directive, all of them stop working.
If I look at the code, it would seem the earlier invocation of the Plugin results in the Javascript loading in a different order. This doesn't work:
Code: |
<script src="/media/jui/js/jquery.min.js" type="text/javascript"></script>
<script src="/media/jui/js/jquery-noconflict.js" type="text/javascript"></script>
<script src="/cache/widgetkit/widgetkit-97a724b0.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
<script src="/media/system/js/core.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.easing.js" type="text/javascript"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.sexylightbox.min.js" type="text/javascript"></script>
|
Instead of this which does:
Code: |
<script src="/media/jui/js/jquery.min.js" type="text/javascript"></script>
<script src="/media/jui/js/jquery-noconflict.js" type="text/javascript"></script>
<script src="/cache/widgetkit/widgetkit-97a724b0.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
<script src="/media/system/js/core.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-more.js" type="text/javascript"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.easing.js" type="text/javascript"></script>
<script src="/plugins/content/arisexylightboxlite/arisexylightboxlite/js/jquery.sexylightbox.min.js" type="text/javascript"></script>
|
Presumably there's a JS conflict somewhere so is there any way to trick the plugin to load last?
Regards, Mark