--> $(document).ready(function(){ $(".scelta input").on("click",function(){ if($(".scelta input:checked").val()=="scarica"){ $(".bottone.invia").css("display","none"); $(".bottone.scarica").css("display","block"); } else{ $(".bottone.scarica").css("display","none"); $(".bottone.invia").css("display","block"); } }); $('#provincia').change(function(){ if($('#provincia').val()!=''){ $('#comune').removeAttr('readonly'); } if($('#provincia').val()==''){ $('#comune').attr('readonly', 'true'); } $('#comune').val(""); }); }); */ function cerca_centro(param){ var min_length = 3; var centro = $('#centro_euromaster').val(); if (centro.length >= min_length) { $.ajax({ url: 'cerca.php?centro='+centro, type: 'POST', data: {centro:centro}, success:function(data){ $('#centri_suggeriti').show(); $('#centri_suggeriti').html(data); } }); } else { $('#centri_suggeriti').hide(); } } function set_item(item){ $('#centro_euromaster').val(item); $('#centri_suggeriti').hide(); } function check_centro(){ var suggerimento = $(".centri_suggeriti ul li").length; if(!suggerimento){ $(".centro_euromaster").val(""); $(".centro_euromaster").attr("placeholder", "ATTENZIONE non hai scelto il centro dall'elenco"); $(".centro_euromaster").css('border-color','red'); } else{ $(".centro_euromaster").css('border-color','#ccc'); $(".centro_euromaster").focus(function(){ $(this).css('border-color','#66afe9'); }); } } /* function cerca_comune(param){ var min_length = 3; var comune = $('#comune').val(); var id_provincia = $('#provincia').val(); if (comune.length >= min_length) { $.ajax({ url: 'cerca.php?comune='+comune+'&id_provincia='+id_provincia, type: 'POST', data: {comune:comune}, success:function(data){ $('#comune_suggerito').show(); $('#comune_suggerito').html(data); } }); } else { $('#comune_suggerito').hide(); } } function set_item(item){ $('#comune').val(item); $('#comune_suggerito').hide(); } */ /*$(function() { $("#accordion").accordion({ header: "h3", collapsible: true, active: false, heightStyle:"200px" }); });*/ $(document).ready(function(){ $('#contact-form').submit( function(event){ event.preventDefault(); $.post( 'ajax/send.php', $(this).serialize(), function(data){ if(data.indexOf("ERRORECAPTCHA") >= 0 ){ $('#errorCaptcha').html('ATTENZIONE!! Il codice inserito non corrisponde'); } else{ $('#contact-form').hide(); $('#form-message').css('min-height','400px'); $('#form-message').html(data); } } ) } ); });