Everything was working smoothly with the implementation of the JQuery Cycle Plugin.
However, as I attempted to link a separate JavaScript file for a Menu in the Head Section from this source ,
<script type="text/javascript" src="js/ddmegamenu.js"></script>
either before or after the script tag for the Cycle:
<script type="text/javascript" src="js/jquery.cycle.min.js"></script>
An error popped up: "Object doesn't support this property or method".
You can view my development site here:
The debugger pinpointed the issue at:
$(document).ready(function () {
$('.slideshow').cycle({
fx: 'fade'
});
});
Other than completely abandoning the Dynamic Menu, is there a workaround that someone could suggest?