In my jquery slider here, I am trying to wrap the images in tags with href links. They are unresponsive. However, onclick="javascript:self.location.href='http://hodaradesign.com/'; return false;" works fine. Why is that?
Doesn't work:
<a href="hodaradesign.com"><img id="book2" class="book" src="book2.png" /></a>
Works:
<img id="book3" class="book" src="book3.png" onclick="javascript:self.location.href='http://hodaradesign.com/'; return false;" />
Live demo:
http://www.freewaycreative.com/jsfun/fiddle.html
Any ideas?