I am trying to display a message if the user click in the submit button and the form is valid. I am using Shopify for that. Is there a way to do that with JavaScript or in Liquid?
Thanks in advance.
I am trying to display a message if the user click in the submit button and the form is valid. I am using Shopify for that. Is there a way to do that with JavaScript or in Liquid?
Thanks in advance.
2
Answers
you can add onclick event and write javaScript code to validate this
ex
The simplest solution would be a pop-up message using the following:
onclick: ‘alert(“Message”)’
Just add that as an attribute to your button in your HTML document, with “Message” being replaced with whatever you want your message to be.