Day 194

And... DONE!
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

console.log("Hello World!")

var followButton = document.getElementById('follow-button')
console.log(followButton)

followButton.addEventListener('click', function() {
  var socialMediaDiv = document.getElementById('social-media-section')
  console.log(socialMediaDiv)
  socialMediaDiv.classList.toggle('active');
})

Comments

Popular posts from this blog

Day 184

Day 2

Day 188