> $(document).ready(function(){
>   $("ul#primary-navigation li").hover(function(event){
>     $("this > ul").show();
>   });
> });


Try this instead:

$('ul', this).show();

Reply via email to