JS functions help required
Hi,
Can someone tell me if the last 4 lines of the script below need anything more added to them?
Related to these functions, the superfish module page in Joomla has identical baloon messages while hovering over functions that all say " callback function fires when Superfish is initialized : 'this' is the containing UL. ??? and there is a form window to add in something but I don;t have a clue as to what I should put in there.
My question is what if anything should be added and where does it go?
<script type="text/javascript">
$(document).ready(function() {
$('sf-menu').superfish({
delay: 1200,
animation: {opacity:'show', height:'show'},
speed: 'normal',
hoverClass: 'sfHoverIntent',
autoArrows: false,
dropShadows: false
onInit: function(){},
onBeforeShow: function(){},
onShow: function(){},
onHide: function(){}
});
});
</script>
All help ion this issue would be appreciated.
RD