este es el codigo para evr en que estoy fallando:
Código :
window.addEvent('domready', function() {
$('clickMe').addEvent('click', function(ev){
new Event(ev).stop();
var mooXHR = new XHR({
method:'get',
onRequest: function(){
$('content').setHTML('Enviando...');
},
onSuccess: function(){
$('content').setHTML(this.response.xml);
}
});
mooXHR.send('persons.xml','pelos');
});
});gracias por las respuestas
