up vote 1 down vote favorite
share [g+] share [fb]

alt text

I need to implement a drop down menu like the one in the image. I know how to accomplish something like this when there is no 'go' button but how would I do this with the the 'go' button? Is there a way to allow the user to select a link but not trigger it unless the user clicks the go button? Is there a jquery plugin or something for this kind of behavior?

Im not very good with JS, so sample snippets to illustrate your suggestions will go a long way to helping me understand - thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You can prevent the default behavior of the links, like this:

$(document).ready(function() {

  $("#menu a").click(function(event) {
    event.preventDefault();
  });  

});

So the user won't be redirected when choosing the link, but won't break that behavior in case he wants to open it in a new tab/window, which is cool.

And for redirecting the user when he clicks, you can just attach an event to the GO button which finds the selected a, takes its href, and set the current location to it's value.

link|improve this answer
How would I go about finding the currently selected link when the user clicks 'go'? – Thomas Aug 5 '10 at 8:37
@Thomas: Add "selected" id to selected list item (when selecting) and then $("#selected").attr("href") will give you correct link. – Im0rtality Aug 5 '10 at 8:41
I agree with Im0rtality approach (Y) – alcuadrado Aug 5 '10 at 8:58
feedback

You could do something like this:

$("#menu a").click(function(event) {
    $("#menu a").removeClass('selected');
    $(this).addClass('selected');
    return false;
}); 

Then:

$("#buttonid").click(function(event) {
    window.location.href = $("#menu a.selected").attr('href');
}); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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