Ruby on Rails Guides

The Rails Guides are at the following address:

They look really good. I am particularly interested in learning how to create the nice looking pop-up menu when you click on the "Guides Index" link.

Does anyone know where can I find information on how to do create such interface?

Thanks.

Bharat

Javascript

I'd imagine they have a large menu Div that is set to display:none in the CSS

When you click the tab the div becomes visible

Look into the onclick event: http://www.w3schools.com/jsref/jsref_onClick.asp and the prototype function 'toggle': Prototype API Documentation | Element.toggle (Deprecated URL)

Gavin