Skip to content

Instantly share code, notes, and snippets.

@Bhupesh-V
Last active April 17, 2019 05:33
Show Gist options
  • Save Bhupesh-V/b455db97c4b6e3d8858ff897b0bf1a3e to your computer and use it in GitHub Desktop.
Save Bhupesh-V/b455db97c4b6e3d8858ff897b0bf1a3e to your computer and use it in GitHub Desktop.

Follow below steps to use a Google Form as a Feedback Form ;)

  1. Make a Google form having exactly the same fields as on your website.
  2. Once you do this , generate a link of the prefilled form , you will get the option by clicking onn the 3 dots
  3. The Generated URL may look somewhat like this
<!--
https://docs.google.com/forms/d/e/1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw/viewform?usp=pp_url&entry.389706550=Karma&entry.1867581834=Bitch&entry.973008035=Hellllllllooooo
-->
    • The URL part 1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw is your unique form ID.
    • The part entry.389706550=Karma is the name of your field you created in Google Form, this will be used in the HTML form and the part =Karma this is the text you filled in the field while getting a pre-filled link, this will be doing the trick in HMTL form , See Point 5.
    • As you can see I have 3 fields in my Google Form : entry.389706550=Karma , entry.1867581834=Bitch and entry.973008035=Hellllllllooooo
  1. Make the HTML form in the following format

<form name="gform" id="myform" enctype="text/plain" action="https://docs.google.com/forms/d/e/1FAIpQLSfim3RiM1NLrTszkwOv2uJ8mFMfZR6WZU-qKK6oRUlgA9vjuw/formResponse?" target="hidden_iframe" onsubmit="submitted=true;">
  <input type="text" name="entry.389706550" id="entry.389706550" placeholder="First Name" />
  <input type="text" name="entry.1867581834" id="entry.1867581834" placeholder="Last Name" />
  <textarea name="entry.973008035" id="entry.973008035" placeholder="Message" rows="4"></textarea>
  <input type="submit" class="button" value="Send Feedback">
</form>            
  1. This will do the job but after clicking the Send Feednback button the website will be redirected to Google Forms. to Prevent this add the following line of code
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"></iframe>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment