Re: jQuery Navigation Slider
maybe I was stupid lol fuck!
Code:
//Toggle Sub Navigation
$(document).ready(function(){
$('.toggle').hover(function(){
$('.dropdown').slideDown()
},
function(){
$('.dropdown').slideUp();
});
$('.dropdown').hover(function(){
$('.dropdown').stop(); //solved all my problem instead of timeout and if/else
},
function(){
$(this).slideUp();
});
});
LOL FUCK TOOK ME TWO DAYS!!
Re: jQuery Navigation Slider
See, a little bit of learning is never bad for you :p
Re: jQuery Navigation Slider
This can be done with css easily.. and even wouldn't need bg image.