$(function() { fCheckObbligatori(); $('#nominativo').focus(); $(document).bind('keydown', 'Ctrl+n', function() { $('#frmContacts textarea').lorem({ type: 'paragraphs',amount:'4',ptags:false}); $('#frmContacts input[type=checkbox]').attr('checked',true); $('#nominativo').val('Lorem Ipsum'); $('#citta').val('Lorem ipsum dolor sit amet'); $('#telefono').val('+39 000 00000000'); $('#email').val('lorem@ipsum.it'); fCheckObbligatori(); }); $(document).bind('keydown', 'Ctrl+k', function() { $('#frmContacts input[type!=submit]').val(''); $('#frmContacts textarea').html(''); $('#frmContacts input[type=checkbox]').attr('checked',false); fCheckObbligatori(); }); }); 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('Mandatory acceptance.'); } else $('#lblPrivacy').html(' '); //--- nominativo if( ! $('#nominativo').val() ) { blnReturn = false; $('#lblNominativo').html('Required'); } else $('#lblNominativo').html(' '); //--- richiesta if( ! $('#richiesta').val() ) { blnReturn = false; $('#lblRichiesta').html('Required'); } else $('#lblRichiesta').html(' '); if( $('#email').val() ) { if ( $('#email_check').val() != '1' ) { $('#lblEmail').removeClass('errore').addClass('conferma').html(''); //--- Ajax : inizio $.ajax({ url: 'include/ajax/checkEmail.php' , data: 'command=checkEmail&pstrEmail=' + $('#email').val() , async: false , success: function(data) { // Ritorno : Inizio update = data.split('|'); if( update[0] == 'checkEmail' ) { if( update[1] == 1 ) { $('#lblEmail').removeClass('errore').addClass('conferma').html("The address seems correct. Ok."); $('#email_check').val('1'); } else { blnReturn = false; $('#lblEmail').removeClass('conferma').addClass('errore').html("The address is not correct."); $('#email_check').val('0'); } } // Ritorno : Fine } }); //--- Ajax : inizio } } else { blnReturn = false; $('#lblEmail').html('Required'); } if ( pintSubmit > 0 ) if ( ! blnReturn ) { $('#oPreload').fadeOut(); $('#submitLoad').hide(); $('#submitBut').show(); $("html,body").animate({scrollTop: 0}, 1500, "bounceout"); } else { //--- Ajax : inizio $.ajax({ type: "POST" , url: 'include/ajax/sendContatti.php' , async: false , data: 'command=sendContatti' +'&strNominativo=' + $('#nominativo').val() +'&strCitta=' + $('#citta').val() +'&strTelefono=' + $('#telefono').val() +'&strEmail=' + $('#email').val() +'&strRichiesta=' + $('#richiesta').val() +'&strCopy=' + ( $('#copy').attr('checked') ? 'send' : '' ) +'&strPrivacy=' + ( $('#privacy').attr('checked') ? 'accept' : '' ) , success: function(data) { // Ritorno : Inizio update = data.split('|'); if( update[0] == 'sendContatti' ) { if( update[1] == 1 ) location.href = 'contacts_thanks.php'+( $('#copy').attr('checked') ? '?copy=send' : '' ); else location.href = 'contacts.php'; } // Ritorno : Fine } }); //--- Ajax : fine } return blnReturn; } function fEvidenziaPrivacy() { $('#box_privacy').hide().fadeIn(); if( ! $('#privacy').attr('checked') ) { blnReturn = false; $('#lblPrivacy').html('Mandatory acceptance.'); } else $('#lblPrivacy').html(''); }