Flexslider links not opening
Posted
by
Marina Nelson
on Stack Overflow
See other posts from Stack Overflow
or by Marina Nelson
Published on 2013-10-17T21:52:57Z
Indexed on
2013/10/17
21:53 UTC
Read the original article
Hit count: 219
jQuery
|flexslider
I am trying to get the slides to link to other pages on the site. The pointer shows when I click on the slides, but page does not open:
<div class="flexslider">
<ul class="slides">
<li> <a href="page1.html"><img src="img/slide-1.jpg" alt="" ></a> </li>
<li> <a href="page2.html"><img src="img/slide-2.jpg" alt="" ></a> </li>
<li> <a href="page3.html"><img src="img/slide-3.jpg" alt="" ></a> </li>
<li> <a href="page4.html"><img src="img/slide-4.jpg" alt="" ></a> </li>
<li> <a href="page5.html"><img src="img/slide-5.jpg" alt="" ></a> </li>
</ul>
</div>
I have not altered any other code. Am I missing something? I don't know Jquery well. Thanks.
© Stack Overflow or respective owner