
jQuery(document).ready(function() {

   // Interceptamos el evento submit
    jQuery('#frontendform').submit(function() {
  // Enviamos el formulario usando AJAX
        Inscribe();
        return false;
    });
})
function Inscribe(){
      var url = jQuery("#urlAjax").val()+"frontManage.php";
      if (jQuery("#emailInput").val() == "" || jQuery("#emailInput").val() == "Add your email"){
          alert("Add your email address");
      }else{
          jQuery.ajax({
                type: "POST",
                url: url,
                data: "show=SaveIns&email="+jQuery("#emailInput").val()+"&newsletter="+jQuery("#newsletterHidden").val()+"&lista="+jQuery("#listSuscribes").val(),
                beforeSend: function(objeto){
                                     jQuery("#resultado").html('<img  src="'+jQuery("#loadingurl").val()+'" >');
                },
                success: function(datos){
                    jQuery("#resultado").html(datos);
                }
          });
     }
}
