View Single Post
Old 12-05-2012, 10:01 PM   PM User | #2
tempz
Regular Coder

 
Join Date: Jul 2012
Location: London
Posts: 436
Thanks: 4
Thanked 80 Times in 80 Posts
tempz is an unknown quantity at this point
Simple google search

Code:
<a>Hover over me!</a>
<div>Stuff shown on hover</div>
Code:
div {
    display: none;
}

a:hover + div {
    display: block;
}
Example of the following: http://jsfiddle.net/Vqmaw/

This method uses CSS you can do it with Jquery etc.
tempz is offline   Reply With Quote