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

HTML Introduction to HTML and CSS (2016) Adding a New Web Page Write the HTML

img from placeimg.com does not change when I refresh the webpage.

Hi, unlike speaker's webpage, mine does not have an image from imgplace.com to change to a random picture eventhough I refresh the webpage I am working on. Is it how it is?

1 Answer

Steven Parker
Steven Parker
229,732 Points

The image is probably being cached in your browser. You may be able to force it to re-fetch by hitting Ctrl + F5 on Windows or Cmd + Shift + R on a Mac.

Another trick I've used is to add a fake query string to the image URL to prevent the browser from using the cached version with a line of JavaScript:

document.querySelector("img").src += "?nocache=" + Math.random();

Note that this particular script will only affect the first image on the page.

Anthony Jones
Anthony Jones
2,662 Points

This worked for me using a chromebook. Ctrl + refresh button.