/** * trade.js * * form validation */ !function($, undefined) { $(function(){ //var $doc = $(document); $("#fApply").on('submit', function(e){ var bValidate; bValidate = fValidate( $(this) ); if (bValidate) { var response = grecaptcha.getResponse(oRecaptcha1); if (response.length > 0) { return true; } else { alert("Please tick the I'm not a robot box."); return false; } } else { return false; } }); }); }(jQuery);