I have a very large javascript file I would like to load only if the user clicks on a certain button. I am using jQuery as my framework. Is there a built-in method or plugin that will help me do this?

Some more detail: I have a "Add Comment" button that should load the TinyMCE javascript file (I've boiled all the TinyMCE stuff down to a single JS file), then call tinyMCE.init(...).

I don't want to load this at the initial page load because not everyone will click "Add Comment".

I understand I can just do:

$("#addComment").click(function(e) { document.write("<script...") });

but is there a better/encapsulated way?

link|improve this question

my question too. – acidzombie24 Mar 23 '10 at 22:01
feedback

1 Answer

up vote 89 down vote accepted

Yes, use getScript instead of document.write - it will even allow for a callback once the file loads.

You might want to check if TinyMCE is defined, though, before including it (for subsequent calls to 'Add Comment') so the code might look something like this:

$('#add_comment').click(function() {
    if(typeof TinyMCE == "undefined") {
        $.getScript('tinymce.js', function() {
            TinyMCE.init();
        });
    }
});

Assuming you only have to call init on it once, that is. If not, you can figure it out from here :)

link|improve this answer
5  
You are the jQuery guru +1 – Jose Basilio May 26 '09 at 20:56
3  
Thanks! I can't believe I missed that. I was RTFM, I swear. – Jeff Meatball Yang May 26 '09 at 20:59
3  
@Jose: Thanks :), @Jeff: No problem. As far as jQuery awesomeness goes this one is fairly unknown. – Paolo Bergantino May 26 '09 at 21:00
Does this work with scripts on other domains too? – Thomas Jensen Dec 10 '11 at 21:17
feedback

Your Answer

 
or
required, but never shown

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