Part of the problem probably is that the slideshow puts jQuery into noConflict mode. And I must say this question strikes me as a little too general. That said - say your slideshow is in a div with an id of fadeshow1, then you should be able to have another element on the page like:
Code:
<div id="fadeoutshow">Fade Out the Show (anything can go here really)</div>
And in the head of the page, after the scripts for the slideshow you can put this script:
Code:
<script type="text/javascript">
jQuery(function($){
$('#fadeoutshow').mouseenter(function(){
$('#fadeshow1').fadeOut('slow');
});
});
</script>
That should do it because it avoids any limitations imposed via noConflict mode. The browser cache may need to be cleared and/or the page refreshed to see changes.
And specifics about the page might require tweaks. But in general (assuming I've made no typos) this will work.
If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks