Hey guys, I've got a few quick questions.
Here is the site: link text
I am using Jquery Tools overlay as shown here.
http://flowplayer.org/tools/demos/overlay/index.html
When you click the image, the popup shows up fine.
<img src="whatever.jpg" rel="#1" class="slideimg" alt="title" />
But whenever I try to use something else, say an image or a span, it wont work.
<a rel="#1" href="#">Click for Large</a>
Here is my Jquery for an image. I've tried replacing img with a and a few other things. Any ideas?
$(document).ready(function(){
$("img[rel]").overlay();
});