The Honeypot field is a security feature in Jamform to deter spam by identifying and filtering out submissions from bots.
A Honeypot field is a hidden input in your form that should remain empty. It's invisible to human users but can be filled out by bots. When the _honeypot
field is filled, Jamform recognizes the submission as a bot attempt and discards it. The user (or bot) is still redirected to the success page, preventing the bot from detecting its failure.
_honeypot
._honeypot
field is filled during submission, Jamform will silently ignore the submission.Example HTML:
<form action="YOUR_JAMFORM_ENDPOINT" method="post">
<!-- Other form elements -->
<input type="hidden" name="_honeypot" value="" />
<button type="submit">Submit</button>
</form>
_Notes:
_honeypot
field will not show up in submission emails or webhook data