How do I add a hidden field to a form?
Examples below require knowledge of Javascript and CSS. Tilda Customer Support does not assist in code-related questions.
Add this code to block T123 from the "Other" category:
<script>
$(function () {
$("form").each(function () {
$(this).append('<input type="hidden" name="nazvanie-polya" value="znachenie-etogo-polya">');
});
});
</script>
Similar questions
Was this answer helpful?
Yes
0
No
0