Checkbox email visibility

Hi webflow addicts,

hope all is well wherever you are…

I am seriously stuck here, got an enrolment for for a beauty training site, the enrolment will have about 60 checkboxes in total, I need to hide the ones that are not checked before sending an email, I would leave them there if the website was not for my wife, but you would understand how annoying that would be day in day out hearing that i failed.

Any help towards this would be so appreciated. I have tried Zapier but I do not think i can do what I am describing here. or can I ?

Fellow addict
Keith


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

1 Like

This code might help you:

  1. (function() {
  2. $(’ form > input’). keyup(function() {
  3. var empty = false;
  4. $(’ form > input’). each(function() {
  5. if ($(this). val() == ‘’) {
  6. empty = true;
  7. }
1 Like

Thanks do I need to replace form with .nameoftheform ? also will this script go into the before the body tag …jquery /java is limited unfortunately …thanks a lot

2 Likes