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
You Have Missed the quote '
$("li").hover( function () { $(this).addClass('hover'); }, function () { $(this).removeClass("hover"); } );