El cual en mi caso seria :
Cita:
<script type="text/javascript">
$(document).ready(function() {
$().ajaxStart(function() {
$('#loading').show();
$('#capa1_coment').hide();
}).ajaxStop(function() {
$('#loading').hide();
$('#capa1_coment').fadeIn('slow');
});
$(function(){
$( '<selector>' ).bind( 'click', function(){
// Lo que quieras hacer
//////////////////////////
$.ajax({
type: "GET",
url: "acciones.php",
data: "coment_delete="+coment_delete+"&id_sql="+id_sql+" &tipo="+tipo,
success: function(msg){
document.getElementById("coment_delete_"+coment_de lete).innerHTML = "Correcto"+msg;
$('#capa1_coment').html(data);
},
error: function(envio){
document.getElementById("coment_delete_"+coment_de lete).innerHTML = "Error:"+envio.responseText;
}
});
/////////////////////////
});
});
})
</script>
Es correcto amigo ?. Gracias.