Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a page that dynamically adds script references via jQuery's $.getScript function. The scripts load and execute fine, so I know the references are correct. However, when I add a "debugger" statement to any of the scripts to allow me to step through the code in a debugger (such as VS.Net, Firebug, etc.), it doesn't work. It appears that something about the way jQuery loads the scripts is preventing debuggers from finding the files.

Does anybody have a work-around for this?

share|improve this question

3 Answers

up vote 44 down vote accepted

Ok, so it turns out that the default implementation of the $.getScript() function works differently depending on whether the referenced script file is on the same domain or not. External references such as:

$.getScript("http://www.someothersite.com/script.js")

will cause jQuery to create an external script reference, which can be debugged with no problems.

<script type="text/javascript" src="http://www.someothersite.com/script.js"></script>

However, if you reference a local script file such as any of the following:

$.getScript("http://www.mysite.com/script.js")
$.getScript("script.js")
$.getScript("/Scripts/script.js");

then jQuery will download the script content asynchronously and then add it as inline content:

<script type="text/javascript">{your script here}</script>

This latter approach does not work with any debugger that I tested (Visual Studio.net, Firebug, IE8 Debugger).

The workaround is to override the $.getScript() function so that it always creates an external reference rather than inline content. Here is the script to do that. I have tested this in Firefox, Opera, Safari, and IE 8.

<script type="text/javascript">
// Replace the normal jQuery getScript function with one that supports
// debugging and which references the script files as external resources
// rather than inline.
jQuery.extend({
   getScript: function(url, callback) {
      var head = document.getElementsByTagName("head")[0];
      var script = document.createElement("script");
      script.src = url;

      // Handle Script loading
      {
         var done = false;

         // Attach handlers for all browsers
         script.onload = script.onreadystatechange = function(){
            if ( !done && (!this.readyState ||
                  this.readyState == "loaded" || this.readyState == "complete") ) {
               done = true;
               if (callback)
                  callback();

               // Handle memory leak in IE
               script.onload = script.onreadystatechange = null;
            }
         };
      }

      head.appendChild(script);

      // We handle everything using the script element injection
      return undefined;
   },
});
</script>
share|improve this answer
nice. Have you experienced any issues that I should be aware of since you posted this answer? ;) – Andrew Matthews Jan 6 '10 at 2:15
I don't think this method makes use of the global ajax events.. not sure. – Shrikant Sharat Jan 6 '10 at 10:16
maybe to shrikant's point, i tried this out and it wasn't working for the script i wanted. i dug around and noticed that the script i wanted to debug was getting pulled in with $.ajax() instead of $.getScript(). i just changed it to use $.getScript() everything was cool. – the0ther Dec 6 '10 at 19:31
Thank you very much for sharing this. It will help me a lot. – yogsototh Jan 10 '11 at 14:10
script somewhat works but does throw unexpected errors when using eval(). but thanks for posting, its pretty nifty workaround. – tim Jan 20 '11 at 20:09
show 6 more comments

With JQuery 1.6(maybe 1.5) you could switch to not using getScript, but using jQuery.ajax(). Then set crossDomain:true and you'll get the same effect.

The error callback will not work. So you might as well not set it up like below.

However, I do setup a timer and clear it with the success. So say after 10 seconds if I don't hear anything I assume the file was bad.

        jQuery.ajax({
            crossDomain: true,
            dataType: "script",
            url: url,
            success: function(){
                _success(_slot)
            },
            error: function(){
                _fail(_slot);
            }
        })
share|improve this answer
Nice one. I set crossDomain to options.development (bool) so when developing I can debug, else I can ignore it. – Kriem Apr 17 '12 at 12:02
I tried this and this seems to work. I do get to see the JS source in the debugger, and I can set a breakpoint. But there is one issue: Every time I go back and forth, a new JS file is donwloaded with new ID # (script.js?_=2345678) etc. Any workaround to this? – Samik R Nov 11 '12 at 21:46
@SamikR Set the cache: false so it will not add that random number to the end of file name – Arash Milani Jan 13 at 20:46
@ArashMilani Thanks. I have since solved it by using the last copy of the script and not loading it through AJAX. Just checking for something like: if(!window.MyScript){ AJAX }, else { // Call load function. } Works nicely. – Samik R Jan 14 at 23:47
@SamikR yeah that should also work :-) just my 2 cents: IMHO it adds an indention of if block that I normally avoid if I find a way around it – Arash Milani Jan 14 at 23:51

Try this,

jQuery.extend({
getScript: function(url, callback) {
    var head = document.getElementsByTagName("head")[0];

    var ext = url.replace(/.*\.(\w+)$/, "$1");

    if(ext == 'js'){
        var script = document.createElement("script");
        script.src = url;
        script.type = 'text/javascript';
    } else if(ext == 'css'){
        var script = document.createElement("link");
        script.href = url;
        script.type = 'text/css';
        script.rel = 'stylesheet';
    } else {
        console.log("Неизветсное расширение подгружаемого скрипта");
        return false;
    }



    // Handle Script loading
    {
        var done = false;

        // Attach handlers for all browsers
        script.onload = script.onreadystatechange = function(){
            if ( !done && (!this.readyState ||
            this.readyState == "loaded" || this.readyState == "complete") ) {
                done = true;
                if (callback)
                callback();

                // Handle memory leak in IE
                script.onload = script.onreadystatechange = null;
            }
        };
    }

    head.appendChild(script);

    // We handle everything using the script element injection
    return undefined;

} 
   });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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