I got the below code from an answer on a previous question here. I have just debugged my code in Chrome and I am getting Uncaught SyntaxError: Unexpected token ILLEGAL on line 6 but all the brackets match up so I am a bit confused.
jQuery(document).ready(function () {
$(".current a").mouseenter(function(){
$(this).siblings("ul").show();
}).mouseout(function(){
$(this).siblings("ul").hide();
});
});
As crazy as it seems the above error was caused by an extra line or space after the closing
;