Submit form with Go button in Safari for iOS

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>
+4
source share
1 answer

Problem target="_blank". Safari popup blocker is not like.

target="_blank" HTML- . fooobar.com/questions/1511562/... .

0

Source: https://habr.com/ru/post/1532049/


All Articles