Why can't I set variables in $.get()???

Why can't I set variables in $.get()???

  1. $.get(url,function(data)
  2. {
  3. var stuff=data;
  4. },"html");

  5. alert(stuff);

Why does this not work? How am I supposed to store grabbed [data] in a variable for later use?