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

Brian Thomas
Brian Thomas
8,947 Points

When i refresh the webpage, it doesn't refresh to a new image using placeimg. Any help please? I'm on a Macbook pro

<img src="http://placeimg.com/250/250/tech" alt="Brian Thomas, Web Developer">

1 Answer

Steven Parker
Steven Parker
229,783 Points

Your browser may be displaying a cached image instead of fetching a new one. There's usually a way to tell the browser to refresh but not use the cache, or to erase the cache.

You can also add a fake query string to your image URL to prevent the browser from using the cached version with a line of JavaScript. For example, assuming the placeimg is the first image on the page:

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

I don't get it. Mine also won't change picture when I refresh. I'm using Windows 8. My browser is Google Chrome. Please, help.

Steven Parker
Steven Parker
229,783 Points

Judy Anne Jamora — I think in Chrome you can refresh without cache with Control-F5. Or go to "more tools" -> "clear browsing data" and select "Cached images and files".

And did you try that JavaScript trick?