Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3951334
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T01:43:08+00:00 2026-05-20T01:43:08+00:00

is there simple expression to access iframe body using jquery. assume iframe’s id is

  • 0

is there simple expression to access iframe body using jquery.
assume iframe’s id is theframe.

I want to give event handler to iframe.
for example,

$("#theframe").contents().find("body").click(function() {
    alert("hello, you touched me~");
});

but, this code doesn’t work in IE.

any alternative idea
help me~

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T01:43:09+00:00Added an answer on May 20, 2026 at 1:43 am

    Give a name property for the iframe element. Now you can reference it like this:

    window.name_of_iframe
    

    Your iframe may not have jQuery so, using standard traversing is a safer way

    iframe_body = window.name_of_iframe.document.getElementsByTagName("body")[0];
    

    This will be the body element in the iframe. This is however usable by jQuery on the host page, so:

    $(window.name_of_iframe.document.getElementsByTagName("body")[0]);
    

    is your jQuery wrapper for the iframe’s body element.

    Be careful to do this only if the iframe is loaded:

    $("iframe[name=name_of_iframe]").load(function() {
        var iframe_body = window.name_of_iframe.document.getElementsByTagName("body")[0];
        $(iframe_body).click(function() {
            alert("hello, you touched me~");
        });
    });
    

    UPDATE: tested it in IE, and there is a rather starnge behaviour with it. In firefox you have to wrap it inside a document ready event, but in IE, it has to be outside, right after the iframe element. This version works in IE and Firefox too.

    <iframe name="ifr" src="?if=1"></iframe>
    <script type="text/javascript">
    var ifr_loaded = false;
    $("iframe").load(function() {
        $(window.ifr.document.getElementsByTagName("body")[0]).click(function() { alert("s"); });
        ifr_loaded = true;
    });
    $(function() {
        if (!ifr_loaded)
        {
            $("iframe").load(function() {
                $(window.ifr.document.getElementsByTagName("body")[0]).click(function() { alert("d"); });
            });
        }
    });
    </script>
    

    UPDATE 2: a shorter version, but it has its drawback, that you have to specify the source of the iframe in the javascript, but it works in all browsers I tried.

    <iframe name="ifr"></iframe>
    <script type="text/javascript">
    $(function() {
        $("iframe").load(function() {
            $(window.ifr.document.getElementsByTagName("body")[0]).click(function() { alert("d"); });
        }).attr("src","/teszt/v/index.php?if=1");
    });
    </script>
    

    UPDATE 3: And an even simpler way for the end:

    <script type="text/javascript">
    function init_iframe(obj) {
        $(obj.document.getElementsByTagName("body")[0]).click(function() { alert("d"); });
    }
    </script>
    <iframe name="ifr" src="?if=1" onload="init_iframe(window.ifr);"></iframe>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a one-line easy linq expression to just get everything from a simple
I want to implement jQuery Mobile, but only for mobile browsers. Is there a
Are there simple libraries out there (.NET and Java) that are able to validate
There is simple cipher that translates number to series of . ( ) In
There is simple JSON serialization module with name simplejson which easily serializes Python objects
Is there a simple way to insert the current time (like TIME: [2012-07-02 Mon
Is there a simple shuffle function for Scala lists? If not, whats the simplest
Is there a simple way to serialize a single-level structure as a string for
Is there a simple way, possibly with open-source command line tools in Linux, to
Is there a simple way in Symfony 1.4 to know whether a submitted form

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.