Jquery Reel Plugin: Showing Or Hiding The Reel Image Dynamically
Excuse my English. I tried to use the jQuery Reel Plugin and it works perfectly on my html file.
Solution 1:
The reel plugin is initializing all images with the class "reel" on document load. If you change the HTML Dom afterwards, you need to initialize the added image. You can do this by the following javascript instead:
$('#image').reel({
images: 'fish/DSCN####.JPG|691..702'
});
Post a Comment for "Jquery Reel Plugin: Showing Or Hiding The Reel Image Dynamically"