sweet jquery
sweet jquery
Out of context: Reply #7
- Started
- Last post
- 8 Responses
- Nightshade0
There's a similar version of this in use on my website. Here's the jquery code I use:
$(document).ready(function(){
$("div.projectImage").hover(
function(){
$(this).find("span.textRollover...
},
function(){
$(this).find("span.textRollover...
}
);});
With the HTML looking something like this:
<div class="projectImage">
<span class="textRollover">
(Text here)
</span>
</div>- $(this).find("span.t...Nightshade
- Grr won't show long lines. Just look at my site's source.Nightshade