Avete mai provato a usare questi script contemporaneamente?
Il triste risultato è che moo.fx andrà, mentre l'editor testuale
non funzionerà. Purtroppo non riesco a correggere l'errore.
La porzione di codice che bugga tutto è contenuta in "prototype.lite.js"
nelle seguenti righe di codice:
Codice PHP:
///////////////////////////////////
function $() {
if (arguments.length == 1) return get$(arguments[0]);
var elements = [];
$c(arguments).each(function(el){
elements.push(get$(el));
});
return elements;
function get$(el){
if (typeof el == 'string') el = document.getElementById(el);
return el;
}
}
//////////////////////////////////////////
Se qualcuno può darmi una mano ne sarei davvero grato, grazie