Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // Question 7
  2. let countries = map.getElementsByTagName('path');
  3. for(let i = 0; i < countries.length; i++) {
  4. let country = countries[i];
  5.  
  6. country.addEventListener('click', function() {
  7. document.getElementById('titre_pays').innerText = this.getAttribute('title');
  8. });
  9.  
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement