<script>
$( document ).ready(function() {
// Configuro lo correspondiente a la pulsación del botón 1
$("#btn1").click(function(e) {
e.preventDefault();
$.ajax({
type: "POST",
url: "membersHandler",
data: jQuery.param({ Opcion : "btn1", field2 : "hello2"}),
success: function(result)
{
if (result.success) {
//window.location = 'showpdf.html';
// Con esta opción hago que el pdf lo abra en una pestaña nueva...
setTimeout(function(){
window.open(result.PDFGenerado);
}, 1000);
}
else {
alert(result.errorMessage);
}
},
error: function (xhr, ajaxOptions, thrownError) {
alert(thrownError);
}
});
});
});
</script>