Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. Array.from(document.querySelectorAll('[message]')).forEach(function(el) {
  2. el.setAttribute('oninvalid', 'this.setCustomValidity("' + el.getAttribute('message') + '")');
  3. el.setAttribute('oninput', 'this.setCustomValidity("")')
  4. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement