Skip to content

Instantly share code, notes, and snippets.

@apelmahmudDev
Created August 11, 2021 15:22
Show Gist options
  • Save apelmahmudDev/f7f5f2242fab8721900d3627c623c83c to your computer and use it in GitHub Desktop.
Save apelmahmudDev/f7f5f2242fab8721900d3627c623c83c to your computer and use it in GitHub Desktop.
event-delegation-example 2
জাভাস্ক্রিপ্ট
const palette = document.querySelector('#palette');
palette.addEventListener('click', handleColorClick);
function handleColorClick(el) {
console.log(`You clicked on this color: ${el.target.style.backgroundColor}`);
}
@apelmahmudDev
Copy link
Author

event-delegation-example 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment