| I have embedded the Jshowoff slider into my site. Link As you can see, the slider won't stop by hovering on my icons. I added the included "SlideLinks" SlideLinks Link, and made them hoverable and this part already works. My main issue is: I would like to get the information about the single links ("slideLinks") and transfer this information my own created buttons above. This is the jquery.jshowoff.min.js code, which creates the SlideLinks. function addSlideLinks() { $wrap.append('<p class="jshowoff-slidelinks ' + uniqueClass + '-slidelinks"></p>'); $.each(gallery, function(i, val) { var linktext = $(this).attr('title') != '' ? $(this).attr('title') : i + 1; $('<a class="jshowoff-slidelink-' + i + ' ' + uniqueClass + '-slidelink-' + i + '" href="#null">' + linktext + '</a>').bind('mouseover', { index : i }, function(e) { goToAndPause(e.data.index); return false; }).appendTo('.' + uniqueClass + '-slidelinks'); $('p').val(linktext); }); }; $(linktext).click(function(){ $('p').append(linktext); }); }); return this; };
Here is my button code (html), which should be equal with the slidelinks.
<div class="content_header_link6" style="left: 724px; top: 182px; background: url(images/empty.gif);"> <a href="http://technologies-and-systems.cadcon.de/index.php?option=com_content&view=article&id=14&Itemid=23&lang=de" target="_blank" style="display: block; width: 80px; height: 80px;"></a></div>
Thank you in advance! |