make append()-and-friends create elements like jQuery()

make append()-and-friends create elements like jQuery()

this
$("body").append("<p/>", {id:"myP", class:"myClass"});

is better than
$("body").append($("<p/>", {id:"myP", class:"myClass"}));

seems a trivial and useful addition.

thoughts?
Leon