I built a simple form that gets an email address that works well in major desktop browsers, however there is one small problem in Safari for iOS. I cannot submit the form by clicking the "Go" button .
Is there a way to submit a form without using jQuery?
Ive searched for qaru on related issues, but still could not solve this problem.
Here is the form code:
<form action="http://mailchimp.list.etc" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<input type="email" value="" name="EMAIL" class="email" placeholder="Email me when new article is publishedβ¦" required>
<input type="submit" class="subscribe" value="Subscribe">
</form>
source
share