Loophole Posted May 15, 2023 Posted May 15, 2023 (edited) I am working on a two-step form and want to send info from the initial form to the second for it to be more conversational. The first form (ex. www.website.com/contact/) collects name, email, and why you're contacting us. (ex. select: hire us, job openings...etc.). Upon submitting, it validates the data and sends the user to the appropriate second form (ex. www.website.com/contact/jobs?fname=John&lname=Doe&email=john.doe@website.com). I have this working. Next, I am using Jquery to grab the URL params and set the name and email fields so the user doesn't have to do this again. To do this, I am using something like this: var firstName = urlParams.get('fname') ); $( 'input[name="fname"]' ).attr('value', firstName).val( firstName ); This works. However, when you click submit, the name and email fields are cleared and marked as an error. Am I chasing something that is not possible due to form security? Edited May 15, 2023 by Loophole
Solution paul2009 Posted May 15, 2023 Solution Posted May 15, 2023 (edited) On 5/15/2023 at 5:07 PM, Loophole said: I am using Jquery to grab the URL params and set the name and email fields so the user doesn't have to do this again. As forms are now built using React, you cannot use this method. You'll need to use a React-friendly method. For more details, you may find the following helpful: Simulating onChange events on React (post on Medium) Did this help? Please give feedback by clicking an icon below ⬇️ Edited August 23, 2023 by paul2009 Loophole 1 Me: I'm Paul, a SQSP user for >18 yrs & Circle Leader since 2017. I value honesty, transparency, diversity and good design ♥. Work: Founder of SF.DIGITAL. We provide high quality original extensions to supercharge your Squarespace website. Content: Views and opinions are my own. Links in my posts may refer to my own SF.DIGITAL products or may be affiliate links. Forum advice is completely free. You can thank me by selecting a feedback emoji. Buying a coffee is generous but optional.
howharvey Posted June 2, 2023 Posted June 2, 2023 I used HTML to pre-populate some data in a SS form, this was achieved using getelementID and setting the value of that text area/box. This code block still works BUT the second I click Submit, the data is deleted from the form. What's changed and is there a workaround?
karan Posted June 2, 2023 Posted June 2, 2023 4 hours ago, howharvey said: I used HTML to pre-populate some data in a SS form, this was achieved using getelementID and setting the value of that text area/box. This code block still works BUT the second I click Submit, the data is deleted from the form. What's changed and is there a workaround? Share website URL. I will check it out issue. With over 450+ websites built, I create uniquely tailored Squarespace sites designed to meet your specific needs and preferences. Let's bring your vision to life! 💻✨ Check out My Fiverr Gig: Click Here ------------------------------------------- Please like and upvote if my comments were helpful to you. Cheers! Did I help? Buy me a coffee?
creedon Posted June 2, 2023 Posted June 2, 2023 Please see the following. It begins to answer questions. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects.
bradgoodnet Posted June 2, 2023 Posted June 2, 2023 Sorry, should have explained better... this issue only has existed since the rollout of the new "forms block". I can set values with JS within a form, but on submit those fields get cleared.
creedon Posted June 2, 2023 Posted June 2, 2023 Quote this issue only has existed since the rollout of the new "forms block". I can set values with JS within a form, but on submit those fields get cleared. Hopefully this thread is more helpful. Please see the following. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment