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!

link|improve this question

from wich plugin is the overlay() function? – Einacio Aug 5 '11 at 19:08
sorry for not posting this, here's the link flowplayer.org/tools/demos/overlay/trigger.html – Tuck Aug 5 '11 at 19:09
i think that in onBeforeLoad it should be $(this), as usually this inside an jQuery event is a dom element, but i don't have time to test your code right now. if so, it would break your js – Einacio Aug 5 '11 at 19:21
Where should $(this) be located in onBeforeLoad? – Tuck Aug 5 '11 at 19:27
change your this to $(this) – Evan Aug 5 '11 at 19:28
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.