.resize() - callback not working

.resize() - callback not working

Can you tell me why

  1. jQuery("#some-ID").resize(alert("resized!"));

is working, but

  1. jQuery("#some-ID").resize(function(){
  2.       alert("resized!");
  3. });

isn't?

thanks.