John Benedict
John Benedict
I have a client request for this feature too. Anyone have a solution?
If you're using the production (non-minimized) version -- look for line 232: $(''+linktext+'').bind('click', {index:i}, function(e){ goToAndPause(e.data.index); return false; }).appendTo('.'+uniqueClass+'-slidelinks'); Replace with: $(''+linktext+'').bind('mouseenter', {index:i}, function(e){ goToAndPause(e.data.index); return false; }).appendTo('.'+uniqueClass+'-slidelinks'); Basically --...
Yeah -- you have to get the working version. You can grab it here: https://github.com/ekallevig/jShowOff
I have a client request for this feature too. Anyone have a solution?
Assuming you have your slides formatted like so: li a href="url.html" img Just under line 231: var linktext = $(this).attr('title') || i+1; Add: var linkurl = $(this).find("a:first").attr('href'); Then what was...