Possible Duplicate:
jQuery, get html of a whole element
lets say I have:
<span>my span</span>
I would like have html as a string of this span
I use:
var mySpan = $('span');
what to do with the mySpan var to have as a result string "<span>my span</span>"
thanks for any help