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 6086127
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:43:01+00:00 2026-05-23T11:43:01+00:00

I have something like the following code: for(var i=0;i<4;i++) { frm = document.createElement(iframe); frm.width

  • 0

I have something like the following code:

for(var i=0;i<4;i++) {
  frm = document.createElement("iframe");
  frm.width = "100";
  frm.height = "100";
  frm.src = "source.php";
  frm.id = "something";

  frm.attachEvent("load", function() { alert(this.id); //Here I need alternative for this.id });

  var frameDiv = document.getElementById("frameDiv");
  frameDiv.appendChild(frm);
}

It’s simplified, but basicly it creates four iframes inside some div and I need to fire some actions based on the id of each frame, when it’s completely loaded. It works well, but the problem is in IE. IE doesn’t know operator this, so I can’t access to the id of frame inside. Is there any alternative which I can use for IE?

Thanks for any help!


Abhijit: Actually, the whole code is like this:

if(frm.addEventListener) {
  frm.addEventListener("load", function() { alert(this.id); },false);
}
  else if(frm.attachEvent) {
  frm.attachEvent("onload", function() { alert(this.id); });
}
  else {
  frm.onload=function() { alert(this.id); };
}

So it should works in all browsers.

  • 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-23T11:43:01+00:00Added an answer on May 23, 2026 at 11:43 am

    I’m not sure why this wouldn’t work in IE, but changing

    frm.attachEvent("load", function() { alert(this.id); });
    

    to

    // wrap in an anonymous function to fix scope issues
    (function(frm) {
        frm.attachEvent("load", function() { alert(frm.id); });
    })(frm);
    

    should give you a consistent reference to the iframe.

    (Edit: Updated above code to fix scope issues within the loop. This is exactly why you should generally avoid creating closures in a loop like this – all frm references will point to the last defined iframe unless you take explicit measures to fix the scope.)

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

Sidebar

Related Questions

I have something like the following code: template<typename T1, typename T2, typename T3, typename
I have something that looks like the following: var someList = MockRepository.GenerateStub<IList<ISomething>>(); someList.Add(MockRepository.GenerateStub<ISomething>()); The
I have the following code: var x = 100.007 x = String(parseFloat(x).toFixed(2)); return x
I have something like the following class A def initialize @var = 0 end
I have something like the following data structure: Category StartDateTime EndDateTime =============================================== 1 12/1/2009
I have something like the following <div id=container> <ul id=name_list> <li class=name> <input type=hidden
Suppose I have something like the following in test.cxx (and that I do the
So I have something like the following in Java: private List<SomeType>variable; // ....variable is
Problem -- I have something like the following entries, 1000 of them: args1=msg args2=flow
Is it possible to have something like the following: class C { public Foo

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.