Salve
Sto usando un LightFace con mootools ed ho un problema
ho il seguente codice
che va a chiamare questa funzione
codice:
//ajax
document.id('ajax').addEvent('click',function(){
ajaxFace = new LightFace.Request({
url: 'x.php',
width: 300,
height: 150,
buttons: [
{ title: 'Chiudi', event: function() { this.close(); }, color: 'green' }
],
request: {
data: {
name: document.id('id_V').value
},
method: 'post'
},
title: 'AJAX Demo'
}).open();
});
ora in request vuole anche il valore id_V
ma questo valore id_V nel html dove lo posso inserire ? mica si può mettere due id in un tag ?!?