06-22-2009, 08:00 PM
|
#1 (permalink)
|
|
The Visitor
Join Date: Jun 2009
Posts: 4
Thanks: 0
|
urgent help please
i have recoded everything from scratch now i`m having another problem. when i going with the mouse over it shows what i want to show but doing like a loop can someone help me ?
Code:
$(document).ready(function(){
$('.work li a img').mouseover(function(){
$('.work li a img').append('.features').stop();
$('.features').css('display', 'block');
});
$('.work li a img').mouseout(function(){
$(".features").css('display', 'none');
});
})
Last edited by fantomel : 06-23-2009 at 12:04 AM.
Reason: New code
|
|
|
|