Hi,
Using jQuery 1.4.4 with the Roundabout plugin. Something weird is going on here and I can't put my finger on it.
I have a function set up that changes the text of a <span> when a new image is called into focus. It gets called in $(document).ready like so:
<script>
$(document).ready(function() {
$('ul#archiveScroll').roundabout({
shape: 'lazySusan',
tilt: -5.0,
minOpacity: 0.09,
maxOpacity: 1.0,
reflect: true
});
$('ul#archiveScroll li').focus(function(){
var title = $(this).children('.issueTitle').html().toString();
document.getElementById('displayTitle').textContent = title;
});
});
</script>
I have 7 images in rotation, but for some reason (no matter what order the images are in), the sixth and seventh images fail to trigger the "focus" event.
View it in action: http://jettisonquarterly.com/archive/
Please help- we have clients looking at the site this week and I need it to look spiffy. Is there anything I can do to figure out *what* is causing the problem?
Thanks,
Ty