BLOX
About
Home
Podcast
Advertise
Contribute
Airdrops
Tutorials
Legal
Privacy Policy
Categories
Sports
Politics
Collectibles
Entertainment
Next
Business articles, Information & Resources
Digital Technology for E-Commerce: How to Leverage Tech to Successfully Grow Your Business
This is some text inside of a div block.
This is some text inside of a div block.
min read
Business articles, Information & Resources
How to Start a Home Renovation: Tips to Upgrade Your Home with Confidence
This is some text inside of a div block.
This is some text inside of a div block.
min read
Business articles, Information & Resources
8 Steps to Breaking Into the Video Games Industry
This is some text inside of a div block.
This is some text inside of a div block.
min read
Explore
Blox News
the Professionalist
Videos
Air Drops
Blox Cards
Blox Sports
Blox World
Blox Life
Xclusive Entertainment
Advertise
Syndicate
Contribute
Subscribe
Fraywire
@fraywire works on Blox as the website admin. He sees the potential cryptography technology has for future businesses.
View Posts
// EMAIL DOMAINS TO BLOCK var emailList = /^([\w-\.]+@(?!ericjonesmyemail@gmail.com)([\w-]+\.)+[\w-]{2,4})?$/ // ALERT MESSAGE TO BE SHOWN var emailAlert = 'Please input a valid work email address (NOT Gmail, Outlook, Yahoo, etc.)' // VALIDATion $('input[type=submit]').click(function() { $("input[type=email]").each(function() { var email = $(this).val().toLowerCase(); if (emailList.test(email)) { (this).setCustomValidity(''); } else { (this).setCustomValidity(emailAlert); } }) }); // PREVENTS ALERT FROM APPEARING WITH EACH KEYPRESS $('input[type=email]').on('input', function() { (this).setCustomValidity(''); });