פיתוח תוכנה ובניית אתרים תוכנה לעסקים






פיתוח תוכנה ובניית אתרי אינטרנט
תוכנות לעסקים פיתוח תוכנה ובניית אתרים
התחברות לקוחות
כניסת לקוחות

 
 
כניסת לקוחות

  שכחת את הסיסמה?
תוכנות לדוגמא



 
חברת PC GROUP מתמחה במתן פתרונות מיחשוב מתקדמים לעסקים ולפרטיים. פיתוח תוכנות תפורות ומותאמות לעסקים שונים. בניית אתרי תדמית, אתרי מכירות, אתרים פנימיים לניהול עסק ותחזוקת מערכות מחשבים בעסק. אנו מתמסרים ללקוחותינו ומשתדלים בכל כוחנו לספק את המוצר הטוב ביותר במחירים הוגנים.
יצירת קשר מידע על תוכנה 052-663-5054
PC GROUP
  ניתן ליצור קשר בטלפון בין השעות 19:00 - 8:00
מעבר לשעות הנ"ל ניתן ליצור קשר דרך האתר

  טופס יצירת קשר dot   כתובת מייל dot   קבל הצעת מחיר dot
מחשבמידע על תוכנה

Dynamically add javascript files from within script and only after all of them completed loading run another function (which is usually dependent on the loaded scripts)
 
// load dependencies scripts and only when done run the fileupload function 
$.when(
    $.getScript('/script/script1.js),
    $.getScript('/script/script2.js),
    $.getScript('/script/script3.js),
    $.Deferred(function( deferred ){
        $( deferred.resolve );
    })
).done(function(){
// callbackfunction - loads only AFTER all scripts are loaded
    myfunc();

});

if it was only one file then you could use this:
$.getScript("my_lovely_script.js", function(){

   alert("Script loaded and executed.");
   // Here you can use anything you defined in the loaded script
});

you should also read this important stackoverflow post where it also explains how to do it with plain javascript (quoted here but you should read the entire thing from the source):

function loadScript(url, callback)
{
    // Adding the script tag to the head as suggested before
    var head = document.getElementsByTagName('head')[0];
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = url;

    // Then bind the event to the callback function.
    // There are several events for cross browser compatibility.
    script.onreadystatechange = callback;
    script.onload = callback;

    // Fire the loading
    head.appendChild(script);
}

Then you write the code you want to use AFTER the script is loaded in a lambda function:

var myPrettyCode = function() {

   // Here, do what ever you want
};

Then you run all that:

loadScript("my_lovely_script.js", myPrettyCode);



Name: Shay
Comment: source: http://stackoverflow.com/questions/11803215/how-to-include-multiple-js-files-using-jquery-getscript-method


Post a comment
Your name:

Your comment:


 

מידע על תוכנה
מידע על תוכנה
בית תוכנה לעסקים ולפרטיים