Skip to content

Instantly share code, notes, and snippets.

@zahra-ove
Created March 16, 2022 12:29
Show Gist options
  • Save zahra-ove/9e8e34b2acc644017102109546784af0 to your computer and use it in GitHub Desktop.
Save zahra-ove/9e8e34b2acc644017102109546784af0 to your computer and use it in GitHub Desktop.
in js:
function makeDoggy(e) {
e.target.setAttribute('src', 'https://content.codecademy.com/courses/React/react_photo-puppy.jpeg');
e.target.setAttribute('alt', 'doggy');
}
in html:
<img
src="https://content.codecademy.com/courses/React/react_photo-kitty.jpg"
alt="kitty"
onclick="makeDoggy()" />
====================================================================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment