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 trial

JavaScript

Vic Mercier
Vic Mercier
3,276 Points

Way to set src attribute and alt using JavaScript.

Is there a way set attributes only using JavaScript?

2 Answers

Hi 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 :)

Hey 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!