jQuery
bind
to bind event handlers to events:$('li').bind('click',function(event){alert('Hello')})
$('h1').click(function(e){alert("Hi there");})
one
is like bind
but onle fires once:$('li').one('click',function(event){alert('Hi Once!')})
unbind
deletes handlers. 6 of 11