Chris from css-tricks.com created a beautiful solution for long dropdown menu's: here

I implemented this on the following page: onomadesign.com/wordpress/portfolio/identity-design, on the upper right side.

But I want this submenu to be visible all the time, so there is no need for clicking 'projects'.

Could someone help me with that? I'm definitly not a jQuery pro. Thank you.

link

33% accept rate
the url doesn't open – yoda Nov 24 '09 at 18:32
shit sorry, it's this one onomadesign.com/wordpress/portfolio/identity-design – Josh Nov 24 '09 at 18:34
update the question, so other can see it as well :) – yoda Nov 24 '09 at 18:35
feedback

2 Answers

This probly isn't a great answer, but it works:

<script type="text/javascript" charset="utf-8"> 	
	$(document).ready(function() {		

		$('.dropdown > li').longDropdown({
			visible: 50
		});			
		$('.margin').live(function() {				
			$this = $(this);				
			$("body").css('marginTop', $this.attr('rel') + 'px');
			return false;
		});

            $('.dropdown a:first').click(); 

	});
</script>
link
Place that after the drop down is setup, and it replicates the click. It would take more time, but be worth it to go through the plugin's code and fix it to fire when the dom's ready. – Nick Spiers Nov 24 '09 at 19:00
Thanks, Nick. Makes sense, but where do I put this exactly? I can't seem to make it work. – Josh Nov 24 '09 at 19:06
stole this from your page: <script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('.dropdown > li').longDropdown({ visible: 50 }); $('.margin').live(function() { $this = $(this); $("body").css('marginTop', $this.attr('rel') + 'px'); return false; }); $('.dropdown a:first').click(); }); </script> – Nick Spiers Nov 24 '09 at 19:10
ha, didn't realize comments don't format code. Edited answer. Let me know if that works! – Nick Spiers Nov 24 '09 at 19:12
and that was taken from your code, around line 160 – Nick Spiers Nov 24 '09 at 19:13
show 3 more comments
feedback

Can you just do something like:

$(function(){
    $('#sub_menu).show();
});

At that point you may then be able to remove the anchor tag for the "projects" link. Let me know if that doesn't work for you.

EDIT:

You could also try:

$('#sub_menu').css({height:400,overflow:'hidden'}).show();

which appears to work in both FF and IE if you switch from the jQuery plugin to the regular JS file that is downloadable from the site you linked. The issue with this is that the dropdown will disappear when you mouse out of the drop down. To me, this is desirable since it's open when the user first sees the page but can be hidden by mousing over it and then mousing away. If you want it to always stay open, you can use the following code:

$('.dropdown > li').bind('mouseleave', function(event) {
    $('#sub_menu').css({height:400,overflow:'hidden'}).show();
});

which should do the trick.

link
thanks Brian, I tried this, but then it just shows the menu with a regular browser scrollbar, and not the cool scrolling effect. – Josh Nov 24 '09 at 18:51
Ok, let me give it another look. – Brian Hasden Nov 24 '09 at 18:54
Btw, the effect isn't working for me in FF3.5 – Brian Hasden Nov 24 '09 at 18:55
Yes. That's because firefox doesn't display 'empty' images, so there is no need to scroll yet. But this will be fine when there are more thumbnails to display. – Josh Nov 24 '09 at 19:02
any other ideas? thanks very much! – Josh Nov 24 '09 at 19:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.