[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/last-endcode/JavaScript-DOM/master/17.addEventListener.js [Back]  [Original]

// select element
// addEventListener
// what event,
// and what to do (callback function/annonymous funciton/function reference)

const btn = document.querySelector('.btn');
const h3 = document.querySelector('h3');

btn.addEventListener('click', function () {
  // if click btn h3 will add class blue
  h3.classList.add('blue');
});

Web Proxy Viewer  |  New URL  |  Original Page