Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Last active April 4, 2024 22:04
Show Gist options
  • Save lambdamusic/4734402 to your computer and use it in GitHub Desktop.
Save lambdamusic/4734402 to your computer and use it in GitHub Desktop.
JavaScript: Reload an image with jQuery #js
// There is no reload or replace method for images. The src property can be set in the same way as the location.href property though.
with($('#image')) {
src = src.replace(/\?.*$/, '') + '?' + Math.random();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment