My page has a bootstrap carousel that shows images from 12 security cameras.
I've set up an app on my camera server that does an image grab every 10 seconds and places it in a folder on my webserver. The images always have the same names so - for instance - I'll have files:
north_parking.jpg
south_parking.jpg
front_door.jpg
side_door.jpg
The point being that the names don't change.
My carousel loads the images and works fine. But it caches them so they don't update - even after 10 minutes I'll still see the same images in the carousel even though the files have changed many times since.
Is there a way to force the carousel to reload the images? I would prefer not to refresh the entire page - just the carousel images.
Thanks in advance!