Cosa pensi di questa proposta?
Lasciaci un tuo parere sincero o dei suggerimenti.
Grazie!
<!--
-->
function delComment(cid) {
if (confirm('Sei sicuro di voler cancellare questo commento?')) {
var el = document.createElement("input");
el.type = "hidden";
el.name = "cid";
el.value = cid;
var frm = document.forms['comments'];
frm.appendChild(el);
frm.action = document.location.href;
frm.target='_self';
frm.submit();
}
}
function publishComment(cid) {
if (confirm('Vuoi pubblicare questo commento?')) {
var frm = document.forms['comments'];
var el = document.createElement("input");
el.type = "hidden";
el.name = "cid";
el.value = cid;
frm.appendChild(el);
var el = document.createElement("input");
el.type = "hidden";
el.name = "op";
el.value = "publish";
frm.appendChild(el);
frm.action = document.location.href;
frm.target='_self';
frm.submit();
}
}
Nessun commento:
Posta un commento