Hello everyone.
Seems I've outdone myself. All the while I was creating this pretty little 'latest news' widget that fades on mouseover of each anchor. Then my colleague says, "Hey, Chris, these links don't work"
...oops. I would like to find out if I can have these anchors take the user to the relvent page on click. Currently Cycle is set to do its hocus pocus on mouseover.
This is my Cycle code:
$('#newsSlider .slides ul').cycle({
fx: 'fade',
speed: 1000,
timeout: 0,
pager: '.slides-nav',
pagerEvent: 'mouseover',
pagerAnchorBuilder: function(idx, slide) {
// return sel string for existing anchor
return '.slides-nav li:eq(' + (idx) + ') a';
}
And here is the dev site:
http://slg-development.co.uk/Gradient_12859/
Any help would be hugely appriciated. Thanks everyone!
Christian