I'm constructing html element and putting it in jQuery object. I'm having trouble getting HTML out of that jQuery object. I thought I can just use .html() but that returns an empty string.
Ex:
var myImage = $("<img src='blah.gif' />");
then I want actually get that html
I tried $(myImage).html() <- no luck