ここで前の質問に対する回答から以下のコードを取得しました。Chromeでコードをデバッグしたところ、取得してUncaught SyntaxError: Unexpected token ILLEGAL on line 6
いますが、すべての角かっこが一致しているため、少し混乱しています。
jQuery(document).ready(function () {
$(".current a").mouseenter(function(){
$(this).siblings("ul").show();
}).mouseout(function(){
$(this).siblings("ul").hide();
});
});