I'm wondering how to get a string representation of an element created using jQuery
Something like this:
var myFrame = $("iframe",{src:"http://google.com" scrolling:"no"});
Resulting in: <iframe src="http://google.com" scrolling="no"></iframe>
instead of: [object Object]
I realize that I can create the string from the start, but for readability and the sake of being difficult, I'd like to know how to do it.