I got this mockup, I need to load dynamically pictures from a db and once loaded I need to click on each picture in order to mark what scholar will be promoted to the next grade, I'm figuring out mark it with a star image when I click on the picture, maybe an overlay div on each image that it is activated when I do click.

Any idea how can I make a dynamic selectable list (ordered list) and add an hidden div with an image on each picture?

alt text

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

This type of feature seems like a job for jQuery. I would set the holder diva position to relative and add another div inside with position absolute within the div with a png background image or similar. You can hide this by default using jQuery.hide() and then show the image with jquery.show. For a fancier effect you can use .fadeIn()

link|improve this answer
Thanks, that's what I did. – Felix Guerrero Sep 6 '10 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.