12/01/2010, 20:31
|
| | Fecha de Ingreso: enero-2009
Mensajes: 77
Antigüedad: 15 años, 11 meses Puntos: 0 | |
no anda en ie esta funcion no anda en ie pero si en firefox
Código:
function borrar_cmnt(id){
var i = id;
$.ajax({
async:true,
type: "POST",
dataType: "html",
contentType: "application/x-www-form-urlencoded",
url:"/elim_cmnt.php",
data: "id="+i,
success: function llegadaBorrar_cmnt(){
$("#cmnt_" + id).fadeOut("slow")
},
});
return;
}
|