I'm editing the "Zen" theme in Drupal 7. And that's the problem:
(function ($, Drupal, window, document, undefined) {
alert("xuy");
$("#navigation ul.links li").hover(function() {
alert("xuy");
});
The first alert is working well, but there is no alert on hover. I've got this class in CSS. Even
$("a").hover(function() {
alert("xuy");
});
Didn't work.