Неужели все эти вебмастера умеют работать с серверами?
Или это что-то простое, вроде как поставить денвер на windows?
"scripts": {
"test": "./node_modules/.bin/jasmine-node spec"
}
<form>
<label for="mail">I would like you to provide me an e-mail</label>
<input type="email" id="mail" name="mail">
<button>Submit</button>
</form>
var email = document.getElementById("mail");
email.addEventListener("keyup", function (event) {
if (email.validity.typeMismatch) {
email.setCustomValidity("I expect an e-mail, darling!");
} else {
email.setCustomValidity("");
}
});