Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript AnythingSlider – Appending Forward and Back Buttons (half working) Re: AnythingSlider – Appending Forward and Back Buttons (half working)

#115255
Paesano2000
Participant

How the hell did I miss that? Lol

I see why now… I took Mottie’s jsfiddle to have no errors in it: http://jsfiddle.net/Mottie/VM8XG/
It was misspelt in the fiddle I forked…

Any help however on a function that will advance the player forward or backward would be nice. I do have this one, but it requires the specific hastag # of the slide:


$('.advance-button').click(function(){

var slide = $(this).attr('href').substring(1);

$('#slider').stop().anythingSlider(slide);

return false;

});