To pass the job position from a Job Detail page to a submission Form page in Webflow, you need to use URL parameters and configure your form to receive and display that data.
/apply). /apply?job=Marketing-Manager
/apply?job={Job Title} (replace {Job Title} with the CMS field reference from the collection).
/apply), you need to extract the job parameter from the URL.
id for the input, e.g., job-position.
</body> tag in your Page Settings > Custom Code, add the following plain JavaScript (no <script> tags needed):
const urlParams = new URLSearchParams(window.location.search); document.getElementById("job-position").value = urlParams.get("job");
job parameter and inserts it into the input field with the ID job-position.
To connect a job position from a Job Detail page to a Form page in Webflow, (1) pass the job name as a URL parameter, (2) extract that parameter using custom JavaScript, and (3) populate a form field (visible or hidden) on the submission page. This method ensures the form captures the relevant job position automatically.