// Calculadora Power Solo
jQuery(document). ready (function(){
jQuery('#form_busca').submit (function(){
return false;
});
jQuery('#buscar').click (function(){
busca_news();
});
function busca_news() {
jQuery('#resultado_noticias').empty();
var mes = jQuery('#mes'). attr('value');
var ano = jQuery('#ano'). attr('value');
jQuery.ajax({
type: "POST",
url: "buscar_noticia.php",
dataType: "html",
data: "mes=" + mes + "&ano=" + ano,
success: function (response) {
jQuery('#resultado_noticias'). append(response);
},
error: function () {
alert("Ocorreu um erro durante a requisição!");
}
});
}
});
