// Comentarios
jQuery(document). ready (function(){
jQuery('#form_comentar_nao').submit (function(){
return false;
});
jQuery('#comentar').click (function(){
insere_comentario();
});
function insere_comentario() {
jQuery('#alvo_nao').empty();
var id_noticia = jQuery('#id_noticia'). attr('value');
var autor = jQuery('#autor'). attr('value');
var titulo = jQuery('#titulo'). attr('value');
var texto = jQuery('#texto'). attr('value');
jQuery.ajax({
type: "POST",
url: "comentar_nao.php",
dataType: "html",
data: "id_noticia=" + id_noticia + "&autor=" + autor + "&titulo=" + titulo + "&texto=" + texto,
success: function (response) {
jQuery('#alvo_nao'). append(response);
},
error: function () {
alert("Ocorreu um erro durante a requisição!");
}
});
}
});

