I want to bind hover event on all .menu class element except first element for this i wrote the following code :
$(".menu:not(:first-child')").hover(function () {
},
function () {
});
But this is not working. Whats the problem ?
or