JS JQuery termasuk skrip eksternal

// jQuery
$.getScript('/path/to/imported/script.js', function()
{
    // script is now loaded and executed.
    // put your dependent JS here.
});
Trevorpergliamici