vote up 1 vote down star
1

I have some javascript that goes out and fetches a javascript "class" on another xhtml page. The remote javascript looks something like the following:

    (function() {
        this.init = function() {
            jQuery("#__BALLOONS__tabs").tabs();
        };
    })

After this is fetched into this.javascript, I try to eval it and instantiate:

   this.javascript = eval("(" + this.javascript + ")");
   this.javascript = new this.javascript();
   this.javascript.init();

Of course, this works perfectly in all browsers except IE. In IE, it fails at the eval line. Does anyone have suggestions on how I can make this work in IE or an alternative.

Thanks, Pete

flag

3 Answers

vote up 0 vote down check

Have you tried:

eval("this.javascript = (" + this.javascript + ")");

...?

link|flag
Well there is no eval in IE. I did try this with window.execScript, however, but it doesn't work either unfortunately. – slypete Jun 26 at 21:37
There is no eval in IE!?!? Of course there is! eval is discouraged, but is part of the JS/EcmaScript specification, and has been in IE since IE3 (JScript version 1): msdn.microsoft.com/en-us/library/… – Lee Kowalkowski Jun 28 at 20:54
You must be doing something else wrong to have the perception that eval isn't available. – Lee Kowalkowski Jun 28 at 20:58
Thanks Lee, so if that's the case I don't understand why eval returns null only in IE. – slypete Jun 29 at 14:32
Hi Lee, this ended up working after I made the variable local. Don't ask me why it didn't like the instance var. Anyway, thanks! – slypete Jun 29 at 16:36
vote up 0 vote down

If worst truly comes to worst, something like this may work:

var self = this;
funcid = "callback" + Math.random();
window[funcid] = function(javascript) {
  delete window[funcid];
  self.javascript = javascript;
  self.javascript = new self.javascript();
  self.javascript.init();
}
document.write("<script language='javascript'>" +
               "window." + funcid + "(" +
                 "(" + this.javascript + "));" +
               "</script>");
link|flag
vote up 0 vote down

(eval is not an object method in IE). So what to do? The answer turns out to be that you can use a proprietary IE method window.execScript to eval code.

function loadMyFuncModule(var stufftoeval) {
  var dj_global = this; // global scope reference
  if (window.execScript) {

    window.execScript("(" + stufftoeval + ")");

    return null; // execScript doesn’t return anything
  }
  return dj_global.eval ? dj_global.eval(stufftoeval) : eval(stufftoeval);
}
link|flag
Thanks, but I've already tried this. According to Microsoft's docs, this method always returns null. msdn.microsoft.com/en-us/library/… – slypete Jun 26 at 19:51
Yes, but you can access it in the global scope regardless (see my edit) – Janie Jun 26 at 20:04
When I say access "it" i'm referring to the object you've created by evalling. – Janie Jun 26 at 20:05
I'm afraid that this is still not a complete answer. The "class" that I'm loading (not object) has no name. How would I instantiate this class that I loaded if I have no handle? – slypete Jun 26 at 20:18
Try it out..... – Janie Jun 26 at 20:29
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.