Hi boys! Sorry for my english, I hope you understand me! I have a gallery built using a mix of jquery and normal javascript here: http://www.ivanisevic82.com/pages/modding.php So, as you can see, when I'm hover a thumbinal imag (on the right) it became "clear".
I'd like to keep it "clear" (=active) for all the time the big image relative to the thumbinal is selected. How can I do? This is the code I use for a single image: <p><a href="#" onMouseOut="$('#ToolTip0').fadeOut(250);" onMouseOver="$ ('#ToolTip0').fadeIn(250);"> <img class="fade" src="/media/ thumb_photo0_ombra.jpg" style="background: transparent url(/media/ thumb_photo0.jpg) repeat scroll 0% 0%; -moz-background-clip: -moz- initial; -moz-background-origin: -moz-initial; -moz-background-inline- policy: -moz-initial;" onclick="fadeTo(0);return false" alt="" /></a></ p> <div id="ToolTip0" style="display: none;"> <div style="margin-left: 1px;"><strong>Nome</strong>: <em>Dreaming Stars</em></div> <div><strong>Software</strong>: <em>Samurize</em></div> <div><strong>Sfondo</strong>: <em>Star</em></div> <div style="margin-left: 1px;"><strong>Icone</strong>: <em>Neon</em></ div> </div> Thank you! Bye!