$(function() { //fCheckObbligatori(); $('#nome').focus(); }); function fCheckObbligatori( pintSubmit ) { if ( pintSubmit > 0 ) { $('#oPreload').show(); $('#submitBut').hide(); $('#submitLoad').show(); } var blnReturn = true; //--- privacy if( $('#privacy').attr('checked') != null && ! $('#privacy').attr('checked') ) { blnReturn = false; $('#lblPrivacy').html('Accettazione obbligatoria.'); } else $('#lblPrivacy').html(' '); //--- nome if( ! $('#nome').val() ) { blnReturn = false; $('#lblnome').html('Campo obbligatorio'); } else $('#lblnome').html(' '); //--- cognome if( ! $('#cognome').val() ) { blnReturn = false; $('#lblcognome').html('Campo obbligatorio'); } else $('#lblcognome').html(' '); //--- qualifica if( ! $('#qualifica').val() ) { blnReturn = false; $('#lblqualifica').html('Campo obbligatorio'); } else $('#lblqualifica').html(' '); //--- provincia if( ! $('#provincia').val() ) { blnReturn = false; $('#lblprovincia').html('Campo obbligatorio'); } else $('#lblprovincia').html(' '); //--- nazione if( ! $('#nazione').val() ) { blnReturn = false; $('#lblnazione').html('Campo obbligatorio'); } else $('#lblnazione').html(' '); if( $('#email').val() ) { $('#lblemail').removeClass('errore').addClass('conferma').html('loader'); //--- Ajax : inizio $.ajax({ url: 'include/ajax/checkEmail.php' , data: 'command=checkEmail&pstrEmail=' + $('#email').val() , success: function(data) { // Ritorno : Inizio update = data.split('|'); if( update[0] == 'checkEmail' ) { if( update[1] == 1 ) $('#lblemail').removeClass('errore').addClass('conferma').html('L\'indirizzo sembra corretto. Ok.'); else { blnReturn = false; $('#lblemail').removeClass('conferma').addClass('errore').html('L\'indirizzo non è corretto.'); } if ( pintSubmit > 0 ) if ( ! blnReturn ) { $('#oPreload').fadeOut(); $('#submitLoad').hide(); $('#submitBut').show(); $("html,body").animate({scrollTop: 0}, 1500, "bounceout"); } else $('#frmAccrediti').submit(); } // Ritorno : Fine } }); //--- Ajax : inizio } else { blnReturn = false; $('#lblemail').removeClass('conferma').addClass('errore').html('Campo obbligatorio'); if( pintSubmit > 0 ) { $('#oPreload').fadeOut(); $('#submitLoad').hide(); $('#submitBut').show(); $("html,body").animate({scrollTop: 0}, 1500, "bounceout"); } } return blnReturn; } function fEvidenziaPrivacy() { $('#box_privacy').hide().fadeIn(); if( ! $('#privacy').attr('checked') ) { blnReturn = false; $('#lblPrivacy').html('Accettazione obbligatoria.'); } else $('#lblPrivacy').html(''); }