Sur Prototype Je peux afficher une image "loading..." avec ce code :
var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars,
onLoading: showLoad, onComplete: showResponse} );
function showLoad () {
...
}
Sur jQuery Je peux charger une page de serveur dans un élément avec ceci :
$('#message').load('index.php?pg=ajaxFlashcard');
mais comment attacher un spinner de chargement à cette commande comme je l'ai fait dans Prototype ?