View Single Post
Old 06-22-2009, 08:00 PM   #1 (permalink)
fantomel
The Wanderer
 
Join Date: Jun 2009
Posts: 7
Thanks: 0
fantomel is on a distinguished road
Default 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
fantomel is offline  
Reply With Quote