http://jsfiddle.net/aBaw6/2/
This demo does not add class when you hover a list item.
What am I doing wrong here?
$(\"li\").hover( function
Your javascript syntax is incorrect
$(this).addClass('hover);
Should be:
$(this).addClass('hover');
You forgot to terminate the string.
It works just fine with this change.