$(document).ready(function() { var thema = $('#iid-thema').val(); var eventid = $('#eventID').val(); var cityid = $('#cityID').val(); if(thema != '') { getFormFields(thema,eventid,cityid); if($("#hasaddtext").val() == "N") { $("#showformfields").show(); } } else { $("#formfields").hide(); } $('#iid-thema').change(function() { getFormFields($('#iid-thema').val(),$('#eventID').val(),$('#cityID').val()); if($("#hasaddtext").val() == "N") { $("#showformfields").show(); } }); // $('#Weiter').on('click',function() { // $("#weiterbutton").hide(); // $("#showformfields").show(); // }); }); function getFormFields(thema,eventid,cityid) { var destdiv = 'div#formfields'; $('#Weiter').off('click'); $.ajax({ type: "GET", url: '/_lib_local/getContactFormFields.php', dataType: "html", async: false, data: "cityid="+cityid+"&eventid="+eventid+"&thema="+thema, success: function(data) { $(destdiv).html(data); $(destdiv).show(); $('#Weiter').on('click',function() { $("#weiterbutton").hide(); $("#showformfields").show(); }); } }); return false; }