What you're doing here is calling the second jQuery method. To quote from the jQuery docs:
jQuery( html ) creates DOM elements on the fly from
the provided string of raw HTML.
If a string is passed as the parameter
to $(), jQuery examines the string to
see if it looks like HTML ... if the string
appears to be an HTML snippet, jQuery
attempts to create new DOM elements as
described by the HTML. Then a jQuery
object is created and returned that
refers to these elements. You can
perform any of the usual jQuery
methods on this object.
In practice, this means that you will end up with a fully functional jQuery object - you can use this object to manipulate the HTML snippet you started with. This is pretty handy, and a perfectly valid approach.
The only other thing to keep in mind is that the snippet won't appear in the browser anywhere, unless you actually append it to the DOM.