Cambiata cosi'
ma ricevo sempre lo stesso errore quando arrivo alla riga
var id = document.GetElementById('id');

l'errore è questo:


Uncaught TypeError: Object #<HTMLDocument> has no method 'GetElementById'



function elimina () {


$("#delete").click(function() { // se si clicca su delete delete

{
var s=confirm("attenzione si sta per eliminare il protocollo");
if (s==true) {
alert("premere OK per continuare");
} else {
alert("operazione annullata");
}
}


// recupero la variabile id
var id = document.GetElementById('id');



$.ajax({
type: "POST",
url: "delete.php",
data: 'id='+ id,
cache: false,

});

return false;
});
}