I have another newbie question about jQuery tools (http://flowplayer.org/tools/overlay/index.html). I have an overlay being triggered when an image is clicked, with code that looks relatively like this in the html body.
<img id = "shark" src = "http://static.guim.co.uk/sys-images/Education/Pix/picture
s/2000/11/13/shark.jpg" alt = "click" />
<div id = "overlayFrame">
<div id = "overlayContent"></div>
</div>
<script type= "text/javascript">
var clickable = document.getElementById('shark');
clickable.onmousedown = ImageClick;
function ImageClick(e)
{
console.log("image clicked");
$("#overlayFrame").overlay
({
mask: 'darkgrey',
oneInstance: false,
onBeforeLoad: function()
{
var wrap = this.getOverlay().find("#overlayContent");
wrap.load("overlay.htm");
},
load: true
});
}
</script>
I want the overlay to come up every time the image is clicked. Right now, 'image clicked' prints to the console every time the image is clicked, but the overlay only happens the first time. How can I alter this code to make the overlay happen every time?
Thanks for any help!