I have never done any jQuery programming before, and I am having a hell of a time finding a tutorial to do what I would like. Maybe I am looking for the wrong thing?
I have this scenario:
I have a product that has two or more images. I have one div where the product image is displayed. What I would like to do is have a 'next' and 'previous' button that cycles through the product images. I would love to use a professional gallery with transitions etc, but the image sizes vary, and so the div size must be dynamic like the image sizes. I was thinking of simply changing the contents of a div to change images. Something like this:
<div id="imagediv"><img src="1.jpg" /></div>
--> *next* button is clicked
--> jQuery updates the div so that its contents become:
<div id="imagediv"><img src="2.jpg" /></div>
Is this possible? If the image sizes are different, is this possible? Cheers.