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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 There is no standard JSF component which can represent the |
|||||
|
mouseoveris 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