What is the difference between
function bind() {$('#content').click(function(){});}
and
function rebind() {$('#content').click(function(){});}
and simple
$('#content').click(function(){});
Or in other words – why do I need to use bind() if I simply want to attach simple click event?
Given a common
I think you might’ve seen something that mentions
is the same as
Is that what you mean/saw?