Hi.
Seem to be having some issues with executing jQuery code in the "caption" class.
My class ".showmore" lies within the caption section, however when I perform a hover function, it does not seem to execute this jQuery function.
Is there anything within the Galleriffic jQuery that is preventing me from executing this???
<html>
<head>
<link rel="stylesheet" href="<?php echo $siteurl; ?>css/galleriffic-2.css" type="text/css" />
<script type="text/javascript" src="<?php echo $siteurl; ?>js/jquery.galleriffic.js"></script>
<script type="text/javascript" src="<?php echo $siteurl; ?>js/jquery.opacityrollover.js"></script>
</head>
<script type="text/javascript">
$('.showmore').hover(function(){
$(this).fadeTo('fast', 1);
});
</script>
<div class="caption">
<div class="showmore">+</div>
</div>