[jQuery] How do I find out what the type of the HTML object?

[jQuery] How do I find out what the type of the HTML object?


So I got this code:
$(document).click(function(e){
var target = $(e.target);
})
How do I find out what HTML object (A, SPAN, DIV...) the target var
is?
Thanks.