Guest User

Untitled

a guest
Mar 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // Thank you, Dan Levy
  2.  
  3. function domReady(f, o, m) {
  4. (o = document), (m = 'addEventListener');
  5. o[m] ? o[m]('DOMContentLoaded', f) : ((o = window), o.attachEvent('onload', f));
  6. }
  7.  
  8.  
  9. // example usage:
  10. domReady(function() {
  11. const form = document.querySelector('form');
  12. document.querySelector('form').addEventListener('change', getAdjective);
  13. });
Add Comment
Please, Sign In to add comment