bxslider-3
bxslider-3 copied to clipboard
link to specific 'slide'
Excellent plugin!
Is it possible to write a link to a specific 'slide'?
Example:
Thanks in advance!
Hi,
Amazing plugging, for long time I was looking something like that, many thanks.
I need to link the every slide also.
ddellostritto, have you found out how to do it?
Many thanks
You could certainly write some Javascript to select the proper slide based on the contents of a URL - I've done this on my site. I don't think URLs are something that a slider should be handling.
I'm also interested in this. I'm a designer so coding isn't exactly my strong suit.
I would also like to know this. Thanks in advance!
I solved the issue.
$(function(){ // Declare variable var slider = $('#slideshow_process').bxSlider({ // Your options here }); // Insert a slide control $('#go2').click(function(){ slider.goToSlide(1); return false; });
//js ends });
and in the slide, insert (remember to add < and > after: a id="go2" href="#">Slide2</a
Fantastic, Just what I was looking for Thanks #FPDK