Is there a good way of printing out a jQuery object as pure HTML?
ex:
You could wrap it and then use html:
var img = $('img').eq(0); console.log(img.wrap("").parent().html());