The AJAX slideshow application allows you to view images in a directory that can be accessed via HTTP as a slideshow.
To view the AJAX slideshow in action, see this demo.
For example, suppose that your browser shows you the following contents of a certain directory at a certain URL:
<script>
function processResponse(data)
{
load_slides( data );
start_slides();
}
ajaxSlideshowService.getImages(processResponse, "http://finance.xs4all.nl/images/ajax-slideshow-demo/" );
</script>