How do you convert a jQuery object into a string?
Can you be a little more specific? If you're trying to get the HTML inside of a tag you can do something like this:
HTML snippet:
This is some text
jQuery:
var txt = $('p').html(); // Value of text is This is some text