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

  • Home
  • SEARCH
  • 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 3284624
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T20:10:31+00:00 2026-05-17T20:10:31+00:00

<iframe src=/demo.php id=source></iframe> $(‘#source’).delegate(‘*’, ‘hover’, function() { $(this).addClass(‘hover’); }); $(‘#source’).delegate(‘*’, ‘mouseout’, function() { $(this).removeClass(‘hover’);

  • 0
<iframe src="/demo.php" id="source"></iframe>

$('#source').delegate('*', 'hover', function() {
    $(this).addClass('hover');  
});

$('#source').delegate('*', 'mouseout', function() {
    $(this).removeClass('hover');   
});

$('#source').delegate('*', 'click', function() {
    alert($(this).html());
    return false;
});

Nothing happens when I mouseover or click on any element inside of the Iframe. The Iframe is on the same domain and I was/am under the impression that as long as the Iframe src is on the same domain it should work.

Any ideas on how to make this work?

  • 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-17T20:10:32+00:00Added an answer on May 17, 2026 at 8:10 pm

    FINAL EDIT:

    There are two problems:

    1. Use $('#source').contents() instead of simply using $('#source')

    2. The css rule for .hover is not visible in the context of the iframe.
      Either use .css() to set style directly, add the css links in demo.php or clone all styles in the main document into the iframe with jQuery.

    Also you should avoid .live as there seem to be some issues inside iframes (when using live jQuery binds special eventHandlers on the document, and checks events when they bubble up)

    Here is a working example (jsFiddle link):

    var $c = $('#source').contents();
    
    //clone all styles from this document into the iframe
    $c.find('head').append($('style, link[rel=stylesheet]').clone());
    
    $c.find('body').prepend('<b>This is a test</b><br><b>Click here</b>');
    
    $c.delegate('b', 'hover', function() {
        $(this).toggleClass('hover');
    });
    
    $c.delegate('b', 'click', function() {
        alert('You clicked on:' + $(this).text());
    });
    

    ORIGINAL ANSWER:

    Your problem is that you are using the iframe as context. You should use the frame document instead.

    Also just for safety you might want to add your code in the onload event like this:

    var doc = window.frames['source'].document;
    $(doc).ready(function(){
        $('body').prepend('This is outside the iframe<br>');
        $('body',doc).prepend('This is inside the iframe<br>');
    });
    

    You can view this live jsFiddle example.


    EDIT 1:

    Ok, so the actual problem is that the css styles are not visible within the iframe.

    For example if you use $(this).css('color':'red') instead of addClass it would work. See the updated jsFiddle

    What I suggest is either to have the correct css styles already in demo.php or inserted afterwards like so:

    $('head',doc).append($('style, link[rel=stylesheet]').clone());
    

    updated jsFiddle – with addClass and cloning of styles

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When the source of an iframe is: javascript:''; as in: <iframe id=SpControlFrame1 name=SpControlFrame1 src=javascript:'';
How does googlebot treat iframes? Does it follow the src attribute like a link?
I am writing an iframe based facebook app. Now I want to use the
I have created an iframe code that I want people to use as a
I have an iframe. The content is wider than the width I am setting
I am resizing an iframe, and when I do that in Firefox, the content
I would like to have an iframe take as much vertical space as it
I have a div and an iframe on the page the div has z-index:
I have a page that has an iframe From one of the pages within
How do you post data to an iframe?

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.