//jQuery.noConflict(); (function($) { $(function() { $('.error').hide(); $(".mdf-submit").click(function() { // validate and process form // first hide any error messages $('.error').hide(); var yourname = $("input#yourname").val(); if (yourname == "") {$("input#yourname").focus(); return false;} var project = $("select#project").val(); if (project == "") {$("select#project").focus(); return false;} var email = $("input#email").val(); if (email == "") {$("input#email").focus(); return false;} var phone = $("input#phone").val(); if (phone == "") {$("input#phone").focus(); return false;} var content = $("textarea#content").val(); if (content == "") {$("textarea#content").focus(); return false;} if($('#gdpr').is(':checked')) { var dataString = 'yourname='+ yourname + '&project=' + project + '&email=' + email + '&phone=' + phone + '&content=' + content; //alert (dataString);return false; $.ajax({ type: "POST", url: "bin/process-request.php", data: dataString, success: function() { $('#request_form').html("
"); $('#messagemodal2').html("") .append("") .hide() .fadeIn(1000, function() { $('#messagemodal2').append("
Thank you! Message has been sent!
"); }); } }); return false; } //gdpr }); }); })(jQuery);