I want to use this specific css3 item right here:
http://cssdeck.com/labs/navigation-dropdown-with-flip-effect
The way it is currently set up is by hovering over the element. How do I make it so that it triggers that event onLoad of the body, since there is no JavaScript being used at all in this?
Thanks!
This is best done in JS. This is a rough example -
You get the idea.
Change all
.navigation:hover
to.navigation.hover
and apply that class with javascript
(or if you can change the html just add that class there
<ul class="navigation hover">
)