How to include current URL in a form?

Hi @michael, one option is to use a little javascript in an embed widget

<script type="text/javascript">
            
document.getElementById('pageurl').value = window.location.href; 

</script>

Where pageurl is the form field with unique ID = “pageurl”

You might try that and see if this works:) Just drop an embed widget in your form wrapper, just before the submit button.

3 Likes