Callback exécuter avant le script chargé
Fermé
math 2000
Messages postés
2605
Date d'inscription
dimanche 9 septembre 2007
Statut
Membre
Dernière intervention
7 mai 2016
-
Modifié par math 2000 le 26/09/2014 à 12:37
math 2000 Messages postés 2605 Date d'inscription dimanche 9 septembre 2007 Statut Membre Dernière intervention 7 mai 2016 - 26 sept. 2014 à 16:11
math 2000 Messages postés 2605 Date d'inscription dimanche 9 septembre 2007 Statut Membre Dernière intervention 7 mai 2016 - 26 sept. 2014 à 16:11
A voir également:
- Callback exécuter avant le script chargé
- Script vidéo youtube - Guide
- Retrouver mon compte copains d'avant - Forum Réseaux sociaux
- Copains d'avant qui a visité mon profil - Forum Facebook
- Media charge snap - Forum Snapchat
1 réponse
math 2000
Messages postés
2605
Date d'inscription
dimanche 9 septembre 2007
Statut
Membre
Dernière intervention
7 mai 2016
404
Modifié par math 2000 le 26/09/2014 à 16:19
Modifié par math 2000 le 26/09/2014 à 16:19
j'avais oublié de mettre le callback dans une fonction *
ce qui donne pour les deux versions combiné
ce qui donne pour les deux versions combiné
function MultipleGetScript(tab,callback,sync)
{
if (!sync)
{
var tab2=[];
var cpt=0;
for( var o =0;o<tab.length;o++)
{
tab2[o]=2;
}
for( var o =0;o<tab.length;o++)
{
$.getScript(tab[o],function(){scriptFait(o)});
}
function scriptFait(o)
{
cpt++;
if (cpt==tab.length)
{
callback();
}
}
}
else
{
var i=0;
function getScript2(i)
{
if ( i< tab.length-1)
{
$.getScript(tab[i],function(){getScript2(i+1)});
}
else
{
$.getScript(tab[i],callback);
}
}
getScript2(i);
}
}