Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

How can i implement a similar mega dropdown menu on this site below http://www.kraftrecipes.com/home.aspx Any ideas?Can Jquery do this... Anyone done this before? Thanks in Advance ** i need it for Sharepoint 2010

share|improve this question
This is really a jQuery question whether it's needed for SharePoint or not. Please don't ask these here unless you can clearly show the integration with out-of-the-box SharePoint. – Alex Angas Aug 23 '10 at 23:54
Also Patrick please remember to reward your answerers by clicking the tick next to the answer that most helped you for your other questions. Thanks! – Alex Angas Aug 23 '10 at 23:55

closed as off topic by Alex Angas Aug 23 '10 at 23:53

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

We recently did something like this in our MOSS site. For this we have used jquery libraries.

You would need to have two levels of div elements. The first level would render the parent element i.e. recipes. Further for each parent div element, you would need to have a hidden child div which would contain this information (accordingly styled).

Accordingly you would need to show/hide the child divs based on the click/mousehover.

share|improve this answer
Vivek tell me more about the jquery lib. Thanks – Patrick Aug 23 '10 at 12:21

I think Vivek is on the right track with you, though I would probably use styled unordered lists as opposed to divs so it's a bit more cross-browser compatible.

On a side note, it appears from the source that the Kraft website you linked is SharePoint.

share|improve this answer
Yeah i know that the site is a Sharepoint site. I need more detailed info on this.Can't find anyhting useful – Patrick Aug 24 '10 at 9:14
Well Vivek confirmed the approach for you. That's just a dynamically populated menu so it shouldn't be too difficult. Assuming your links are all in a list, use jQuery to call the GetListItems operation of the Lists web service and write the menu elements (<ul><li></li></ul>) based on the return. – webdes03 Aug 24 '10 at 14:30

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