Noob event question

Noob event question

What 's the difference with:

$('div').click(function(){
  //do this
});


with this one

$('div').bind('click', function(){
  //do this
});


Aren't they the same?