I'm using superfish menu for a Joomla website. The problem I have has to do with the menu time delay. here is the menu: http://jsfiddle.net/tBZPe/6/ it is working fine here. But when I do the same styling on my website it looses all the jQuery functionality.
This is the jQuery I have used:
jQuery(document).ready(function () {
jQuery("#menu").superfish({
delay: 5000,
onHide: function () { jQuery("#HideThis").hide(); }
});
jQuery("#Stuff").click(function () { jQuery("#HideThis").show() });
});