Web Analytics Made Easy -
StatCounter IFRAME Trouble: how to know if the user clicks it... - CodingForum

Announcement

Collapse
No announcement yet.

IFRAME Trouble: how to know if the user clicks it...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • IFRAME Trouble: how to know if the user clicks it...

    Hi,
    I'm using a menu on my page and an IFrame. The webpage displayed inside the Iframe consists of a frameset of two frames.

    I want to close the Menu when someone clicks on the iframe. To do so, I'm looking for an event that fires "onclick" or something like that when one clicks on the Iframe...

    any Ideas?

    thank you for your patience and any help, ideas, solutions.



    regards

    Joanna

  • #2
    You can't use onclick on the iframe tag itself, but you can use onfocus. Just give the div that the menu is in an id and you can use the following:

    <iframe onfocus="document.getElementById('theid').style.display='none';" ...

    Comment

    Working...
    X