Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I display set of images(small). I need to show the larger image(300*300) at some XY co-ordinate when mouseover event occurs on an image while mousout larger image has to disappear . Please give some solution.

share|improve this question
Thanks for editing – Paul Apr 5 '10 at 5:24
2  
mouseover is an event which you can only hook with under each Javascript. Since Javascript runs at the client side, it does not see any piece of JSF source code. It instead only sees the HTML DOM tree of the HTML source as generated by JSF. In other words, JSF is completely irrelevant in this question. To reach a wider audience (HTML/Javascript) on your question, I strongly recommend to edit, retag and reformulate the question based on the JSF-generated HTML output. Start with a HTML <img> element and a Javascript function and once you get it to work, port it back into the JSF source code. – BalusC Apr 5 '10 at 5:28

1 Answer

up vote 1 down vote accepted

You thus actually want an image map. Since I've never used this I can't tell the details from top of head, but the link should help you further. You can for example make use of HTML <map> and <area> elements, or go ahead with a pure CSS approach.

There is no standard JSF component which can represent the <map> and <area> elements. The Sun JSF tutorial however (by coincidence) covers a custom component example with which you can represent them using pure JSF.

share|improve this answer
Thank you very much – Paul Apr 6 '10 at 4:11
Hello BalusC, the links you have given will be useful in some other day.But My requirement is exactly the same as in cardsdirect.com/petite-chrsitmas-cards.aspx. Instead of showing the larger image near to small image, I need to display bigger image in a fixed position for all and it should be at top by hiding the components at that place. I hope explained clearly.. – Paul Apr 6 '10 at 4:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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