How do you write mouseenter, leave?

$(".help_cover").mouseenter(function(event) {
  $(".layout_help_cover").fadeIn();
});
$(".help_cover").mouseleave(function(event) {
  $(".layout_help_cover").fadeOut();
});

how can I write this code? I think this is the case. There is no other way. Does a god know that he can write again?


$(".help_cover")
.mouseenter(function(event) {
  $(".layout_help_cover").fadeIn();
})
.mouseleave(function(event) {
  $(".layout_help_cover").fadeOut();
});

simplify a little bit

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b31631-2bda5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b31631-2bda5.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?