Hello - I want to include the jQuery maphilight plugin for a page in which we have created a navigation wheel. When I include the scripts the plugin works but conflicts with the accordion slider on the homepage. The plugin can be found here: http://plugins.jquery.com/project/maphilight . I uploaded the jQuery plugin to the js folder in newscast and called it in the header like this:
<script type='text/javascript' src='<?php echo get_bloginfo('template_url'); ?>/js/jquery.maphilight.js'></script>
<script>$(function() {
$('.map').maphilight();
});</script>
That didn't work until I also included the function in the custom.js file like this:
jQuery('.map').maphilight();
});
Only then did it work - but also conflicted with the accordion slider.
How can I include this plugin on a page without conflicting with the slider. Any help would be appreciated.
Thanks!!














