I am experimenting with jQuery. As I tried, I found out that I cannot use the hover event with .bind. And I do not know what is wrong.
$(document).ready(function(){ $('.some-class').bind({ hover: function(e) {
What is surprising (at least for me) is that guidance does not work. The rest of the "click" and "blur" work fine.
You can also work without problems.
$(".some-class").hover(function(){
Maybe I can use the code above. But not knowing why this is a big nuisance. So any ideas?
Thank!
jquery
Sinan Nov 06 '10 at 0:27 2010-11-06 00:27
source share