Basically what i am trying to achieve is having the ul menu on the left side of my content div, at the start only one li should be visible.
Once clicked it has to slide out or a sort of animation and be replaced by 4 li that contain the different navigation
(function($){
$(function(){
$('li.dropdown').click(function() {
$(this).fadeOut('slow')
.siblings('li.stage2').css('display', 'block');
});
});
})(jQuery);
this currently does it but the siblings coming in isn’t smooth and when the fadOut animation is over they jump in the place of the other, any help would be appreciated.
EDIT
Not a drop down menu.
Kindly take a look at this code. I built your code fragment and came up with this.
CSS:
HTML:
JS:
See it in action here: http://jsfiddle.net/P9TQA/1/
Good luck.