Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an iframe that acts as a big button. The entire content inside of the iframe is one click target.

What I'd like to do is hover some piece of HTML over the iframe kind of like in this example.

<html>
    <head>
        <style>
            iframe {
                height: 100px;
                width: 300px;
            }
            div {
            position: relative;
            }
            a {
                 position: absolute;
                 top: 0;
                left: 0;
            }
        </style>
    </head>
    <body>
        <div id="content">
            <iframe src="frame.html"></iframe>
            <a id="text">Image</a>
        </div>
    </body>
</html>

You can also see a live example here http://dev.gjcourt.com/iframe

The problem is that I'd like to have click events from the anchor bubble down into the iframe. Is there any way to make this possible?

share|improve this question

3 Answers

up vote 2 down vote accepted

Position the iframe absolutely, make the background of the iframe transparent and give it a z-index higher than the text/other content.

Why are you using an iframe for this?

share|improve this answer
I need the iframe because the image uploading feature that utilizes the iframe must be xdomain, and minus HTML5 and the File API there is no reliable way to do xdomain asynchronous uploads. – gjcourt Mar 21 '11 at 21:12
This works! Thank you so much for the helpful reply. Now to see if it integrates into the product... Apologies for not upvoting, but I need a rep of 15 to do that. – gjcourt Mar 21 '11 at 21:43
I'll upvote in lieu of gjcourt! – thedz Mar 21 '11 at 21:57
@gjcourt you can now! – Kos Nov 22 '12 at 12:30

This is an example of possible Clickjacking and most browsers attempt to prevent it.

share|improve this answer
Kind of.. I'm not trying to do anything malicious. I need the click in an iframe to do something xdomain. – gjcourt Mar 21 '11 at 21:12
Though your intentions are good, the browser still has a responsibility to try to prevent it and any solution to circumvent that shouldn't be relied on (and should in fact be reported to the browser vendor). Are you sure there is no API or similar on the site you're trying to access? – Zikes Mar 21 '11 at 21:20
I happen to disagree with you. While Clickjacking should be avoided, my product is an embeddable widget, that someone has opted into putting on their website. The reason that I'm trying to do this is for localization, it would be nice to have a translatable string appear instead of a background image (also nice for font inheritance). Since someone has opted into using my product, and the button already exists inside the iframe (think facebook like button) than it shouldn't be a problem. – gjcourt Mar 21 '11 at 21:27
If you're providing the page to be loaded within the iframe then you can provide customizability via URL parameters. – Zikes Mar 21 '11 at 22:11

As @Zikes mentioned this is a clickjacking attack, but it is still possible nowadays. All you need to do is to overlay your iframe with SVG element and set pointer-events="none", so it will flow all cursor events through SVG element down to iframe. You can find more examples and crossbrowser solutions in this article.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.