Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialVic Mercier
3,276 PointsWay to set src attribute and alt using JavaScript.
Is there a way set attributes only using JavaScript?
2 Answers
James Anwyl
Full Stack JavaScript Techdegree Graduate 49,960 PointsHi Vic,
Here's a basic example
<img src="" id="myImg" />
document.getElementById("myImg").src = "http://www.google.com/image.png";
document.getElementById("myImg").alt = "This is some alt text";
You can also use attribute selectors in jquery or querySelector/querySelectorAll in vanilla js - see here.
Hope this helps :)
Brandon Leichty
Full Stack JavaScript Techdegree Graduate 35,193 PointsHey Vic,
I'd take a look at this tread on Stack Overflow. You can assign and ID to your image and then change your SRC and ALT using JavaScript:
document.getElementById("imageid").src="../template/save.png";
Hope that helps! Happy coding!