Muchas gracias,
estábais en lo cierto. Lo he solucionado así:
Código Javascript
:
Ver originalfunction guardar_confirmar(idcheckbox) {
var checkbox = document.getElementById(idcheckbox),
ajax = function(url){
var xhr = window.XMLHttpRequest ?
new XMLHttpRequest() :
new ActiveXObject("Microsoft.XMLHTTP") ||
new ActiveXObject("Msxml2.XMLHTTP");
xhr.open("GET", url, true);
xhr.send(null);
};
var estado = checkbox.checked ? 1 : 0;
var id = checkbox.getAttribute("id-vehiculo");
var url = "/admin/editar-detalle-cobro.php?estado=" + estado + "&idcheckbox=" + idcheckbox + "&confirmar=1" + "&id=" + id;
ajax(url);
}
¿Qué os parece?