Código HTML:
Ver original
<html> <head> <script type="application/javascript"> function chk_click(id, check) { $('input[name=baja]').live("click",function(){ var id = $(this).attr('id'); var box = confirm("¿Está seguro que desea eliminar el cliente?"); if (box == true) { $.ajax({ type:'POST', url:'ajax_chk_cliente.php', data:'id= ' + id, success: function() { window.location.href = "ver_cliente.php"; // = 'ver_cliente.php'; //href } }); }else { document.getElementById(id).checked = false; } }); } </script> </head> <body> <form action="" method="post"> <input type="checkbox" id="1" name="baja" onclick="chk_click('1', 'check');" title="eliminar cliente" />'; <input type="checkbox" id="2" name="baja" onclick="chk_click('2', 'check');" title="eliminar cliente" />'; <input type="checkbox" id="3" name="baja" onclick="chk_click('3', 'check');" title="eliminar cliente" />'; </form> </body> </html>