What causes the error "Can't execute code from a freed script"

JavascriptInternet Explorer

Javascript Problem Overview


I thought I'd found the solution a while ago (see my blog):

> If you ever get the JavaScript (or should that be JScript) error "Can't execute code from a freed script" - try moving any meta tags in the head so that they're before your script tags.

...but based on one of the most recent blog comments, the fix I suggested may not work for everyone. I thought this would be a good one to open up to the StackOverflow community....

What causes the error "Can't execute code from a freed script" and what are the solutions/workarounds?

Javascript Solutions


Solution 1 - Javascript

You get this error when you call a function that was created in a window or frame that no longer exists.

If you don't know in advance if the window still exists, you can do a try/catch to detect it:

try
{
  f();
}
catch(e)
{
  if (e.number == -2146823277)
    // f is no longer available
    ...
}

Solution 2 - Javascript

The error is caused when the 'parent' window of script is disposed (ie: closed) but a reference to the script which is still held (such as in another window) is invoked. Even though the 'object' is still alive, the context in which it wants to execute is not.

It's somewhat dirty, but it works for my Windows Sidebar Gadget:

Here is the general idea: The 'main' window sets up a function which will eval'uate some code, yup, it's that ugly. Then a 'child' can call this "builder function" (which is /bound to the scope of the main window/) and get back a function which is also bound to the 'main' window. An obvious disadvantage is, of course, that the function being 'rebound' can't closure over the scope it is seemingly defined in... anyway, enough of the gibbering:

This is partially pseudo-code, but I use a variant of it on a Windows Sidebar Gadget (I keep saying this because Sidebar Gadgets run in "unrestricted zone 0", which may -- or may not -- change the scenario greatly.)


// This has to be setup from the main window, not a child/etc!
mainWindow.functionBuilder = function (func, args) {
// trim the name, if any
var funcStr = ("" + func).replace(/^function\s+[^\s(]+\s*(/, "function (")
try {
var rebuilt
eval("rebuilt = (" + funcStr + ")")
return rebuilt(args)
} catch (e) {
alert("oops! " + e.message)
}
}




// then in the child, as an example
// as stated above, even though function (args) looks like it's
// a closure in the child scope, IT IS NOT. There you go :)
var x = {blerg: 2}
functionInMainWindowContenxt = mainWindow.functionBuilder(function (args) {
// in here args is in the bound scope -- have at the child objects! :-/
function fn (blah) {
return blah * args.blerg
}
return fn
}, x)




x.blerg = 7
functionInMainWindowContext(6) // -> 42 if I did my math right

x.blerg = 7 functionInMainWindowContext(6) // -> 42 if I did my math right

As a variant, the main window should be able to pass the functionBuilder function to the child window -- as long as the functionBuilder function is defined in the main window context!

I feel like I used too many words. YMMV.

Solution 3 - Javascript

Here's a very specific case in which I've seen this behavior. It is reproducible for me in IE6 and IE7.

From within an iframe:

window.parent.mySpecialHandler = function() { ...work... }

Then, after reloading the iframe with new content, in the window containing the iframe:

window.mySpecialHandler();

This call fails with "Can't execute code from a freed script" because mySpecialHandler was defined in a context (the iframe's original DOM) that no longer exits. (Reloading the iframe destroyed this context.)

You can however safely set "serializeable" values (primitives, object graphs that don't reference functions directly) in the parent window. If you really need a separate window (in my case, an iframe) to specify some work to a remote window, you can pass the work as a String and "eval" it in the receiver. Be careful with this, it generally doesn't make for a clean or secure implementation.

Solution 4 - Javascript

If you are trying to access the JS object, the easiest way is to create a copy:

var objectCopy = JSON.parse(JSON.stringify(object));

Hope it'll help.

Solution 5 - Javascript

This error can occur in MSIE when a child window tries to communicate with a parent window which is no longer open.

(Not exactly the most helpful error message text in the world.)

Solution 6 - Javascript

Beginning in IE9 we began receiving this error when calling .getTime() on a Date object stored in an Array within another Object. The solution was to make sure it was a Date before calling Date methods:

Fail: rowTime = wl.rowData[a][12].getTime()

Pass: rowTime = new Date(wl.rowData[a][12]).getTime()

Solution 7 - Javascript

I ran into this problem when inside of a child frame I added a reference type to the top level window and attempted to access it after the child window reloaded

i.e.

// set the value on first load
window.top.timestamp = new Date();

// after frame reloads, try to access the value
if(window.top.timestamp) // <--- Raises exception
...

I was able to resolve the issue by using only primitive types

// set the value on first load
window.top.timestamp = Number(new Date());

Solution 8 - Javascript

This isn't really an answer, but more an example of where this precisely happens.

We have frame A and frame B (this wasn't my idea, but I have to live with it). Frame A never changes, Frame B changes constantly. We cannot apply code changes directly into frame A, so (per the vendor's instructions) we can only run JavaScript in frame B - the exact frame that keeps changing.

We have a piece of JavaScript that needs to run every 5 seconds, so the JavaScript in frame B create a new script tag and inserts into into the head section of frame B. The setInterval exists in this new scripts (the one injected), as well as the function to invoke. Even though the injected JavaScript is technically loaded by frame A (since it now contains the script tag), once frame B changes, the function is no longer accessible by the setInterval.

Solution 9 - Javascript

I got this error in IE9 within a page that eventually opens an iFrame. As long as the iFrame wasn't open, I could use localStorage. Once the iFrame was opened and closed, I wasn't able to use the localStorage anymore because of this error. To fix it, I had to add this code to in the Javascript that was inside the iFrame and also using the localStorage.

if (window.parent) {
    localStorage = window.parent.localStorage;
}

Solution 10 - Javascript

got this error in DHTMLX while opening a dialogue & parent id or current window id not found

        $(document).ready(function () {

            if (parent.dxWindowMngr == undefined) return;
            DhtmlxJS.GetCurrentWindow('wnManageConDlg').show();

});

Just make sure you are sending correct curr/parent window id while opening a dialogue

Solution 11 - Javascript

On update of iframe's src i am getting that error.

Got that error by accessing an event(click in my case) of an element in the main window like this (calling the main/outmost window directly):

top.$("#settings").on("click",function(){
  	$("#settings_modal").modal("show");
}); 

I just changed it like this and it works fine (calling the parent of the parent of the iframe window):

$('#settings', window.parent.parent.document).on("click",function(){  					
   $("#settings_modal").modal("show");		
});

My iframe containing the modal is also inside another iframe.

Solution 12 - Javascript

The explanations are very relevant in the previous answers. Just trying to provide my scenario. Hope this can help others.

we were using:

<script> window.document.writeln(table) </script>

, and calling other functions in the script on onchange events but writeln completely overrides the HTML in IE where as it is having different behavior in chrome.

we changed it to:

<script> window.document.body.innerHTML = table;</script> 

Thus retained the script which fixed the issue.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTom RobinsonView Question on Stackoverflow
Solution 1 - JavascriptSjoerd VisscherView Answer on Stackoverflow
Solution 2 - Javascriptuser166390View Answer on Stackoverflow
Solution 3 - JavascriptaaronView Answer on Stackoverflow
Solution 4 - JavascriptGrzegorz CiwoniukView Answer on Stackoverflow
Solution 5 - JavascriptpcorcoranView Answer on Stackoverflow
Solution 6 - JavascriptTomView Answer on Stackoverflow
Solution 7 - JavascriptwycleffseanView Answer on Stackoverflow
Solution 8 - JavascriptNathan CrauseView Answer on Stackoverflow
Solution 9 - JavascriptMelanieView Answer on Stackoverflow
Solution 10 - Javascriptpanky sharmaView Answer on Stackoverflow
Solution 11 - JavascriptChanView Answer on Stackoverflow
Solution 12 - Javascriptpavan kumarView Answer on Stackoverflow