jQuery bind handler vs 'click' event

jQuery bind handler vs 'click' event

What would be the difference between setting up a click handler using .click() or binding the click handler:

  1. $('.cancelButton').click(function() {
  2.       $('.dialog1').dialog('close');
  3. });

      VS

  1.  $('.cancelButton').bind('click', function(){
  2.        $('.dialog1').dialog('close');
  3.  });

Obviously they both do the same thing, but is one better (in terms of speed or practice) or does it not matter at all which one you use? I usually use .click() to avoid the extra typing but I want to make sure I'm not missing anything.