Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Last active November 1, 2017 18:20
Show Gist options
  • Save Sstobo/ac785180f112e9190d326004e94e6de3 to your computer and use it in GitHub Desktop.
Save Sstobo/ac785180f112e9190d326004e94e6de3 to your computer and use it in GitHub Desktop.
[email validator] #js
<form class="form1">
<input class="email-input" type="text" placeholder="Your Email" o>
<button class="email-button">Subscribe</button>
</form>
$(".email-button").click(function() {
var x = $(".email-input").val();
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(x) )
{
alert("Welcome " + x + "!")
}
else {
alert("You have entered an invalid email address!")
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment