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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:33:40+00:00 2026-06-12T10:33:40+00:00

Context: I am building a live HTML,CSS & Javascript editor. It can be accessed

  • 0

Context:

I am building a live HTML,CSS & Javascript editor.
It can be accessed here.

The source can be accessed here.

Question:

Is it possible to run javascript code injected into an iframe without repeated removal and addition of <script> tag containing the code from and to the DOM tree? Since DOM manipulation is a costly affair, I want to try and eliminate multiple DOM manipulations.
Instead I want to be able to just change the textContent of the <script> tag and have it run the new code that I’ve inserted.

Thanks!

  • 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-06-12T10:33:42+00:00Added an answer on June 12, 2026 at 10:33 am

    If you don’t mind using the evil eval, you can re-evaluate most JavaScript in the iframe’s window, for example

    function someFunction(){                                // any function
        console.log(document.body.children);
    }
    
    someFunction();                                         // see normal output
    
    var ifrm  = document.getElementsByTagName('iframe')[0], // your iframe
        iwind = ifrm.contentWindow;                         // the iframe's window
    
    iwind.eval( someFunction.toString() );                  // re-evaluate function with eval from iframe
    iwind.someFunction();                                   // see new output - output is in iframe's context
    

    compare against

    iwind.someFunction = someFunction;                      // set variable
    iwind.someFunction();                                   // same as calling someFunction() from parent
    

    It should work for most valid JavaScript (take into account scope), but be aware that using eval can be bad.

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

Sidebar

Related Questions

Newbie backbone question: Context: Building a shopping list with backbone I have a model
Here is my problem. CONTEXT I'm building a whole system to handle images processing
I'm building a little script that changes content and css live on the page
context: I'm building a favouriting system that uses html localstorage API (with a php
For some context: I'm building a blog system where user can see all the
Context: We are building a framework for rapid delivery of WPF applications. This framework
# Explaining the context puts I am learning Rails, building a simple forum application.
# Explaining the context puts I am learning Rails, building a simple forum application.
Context: I'm building a little site that reads an rss feed, and updates/checks the
Context I'm building a persistence layer to abstract different types of databases that I'll

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.