I currently have a jQuery validation script.. How do I add the recaptcha validation to this??
My form action says:
action="<?php echo $_SERVER['PHP_SELF']; ?>" And then there is some javascript code before the </html> tag that says:
<script type="text/javascript" src="js/jquery.validate.js"></script><script> $(document).ready(function(){ $("#myform").validate(); $(":date").dateinput(); }); </script>Then I also have a
.js file that has a bunch of code.
I have no idea how to incorporate the recaptcha validation code.
The page I want to add this to is php page -
http://chaewebdesign.com/client/auberge/beta/rooms.phpPlease help!