I have click function on a tag. I want to bind mouseover event on same element. It this possible with .bind method. fiddle
$(function(){
$('a').click(function(){
alert(0);
})
$('a').bind('mouseover')
})
<a href="#">Jitender</a>