</li>
<li>
<a href="#">Forms</a>
</li>
<li>
<a href="#">Tables</a>
</li>
<li>
...
...
I've wrote this code in my view with uiBinder. BUT the problem is that
this menu is animated by this javascript:
$(document).ready(function() {
// Navigation menu
$('ul#navigation').superfish({
delay: 1000,
animation: {opacity:'show',height:'show'},
speed: 'fast',
autoArrows: true,
dropShadows: false
});
$('ul#navigation li').hover(function(){
$(this).addClass('sfHover2');
},
function(){
$(this).removeClass('sfHover2');
});
Also if I load this script in MainEntryPoint.html is doesn't work!!
Neither if I load the script in the UIBinder. So I don't know how I
can do work this example!
THanks very much
Best regards
Thanks!