Aller au contenu principal
loading

Autoload en Javascript

POSTÉ DANS jQuery, Prototype TAGS jQuery, Prototype AUTEUR herve COMMENTAIRES 6

Voici les différents moyens de permettre un autoload d'une fonction Javascript.

En jQuery :

(function($){
   ... code à charger ici ...
})(jQuery);

 

En Prototype :

var toto = {};

toto.autoload=(function(){
   ... code à charger ici ...
})();

 



6 commentaire