<form id="form1">
<ul>
<li>Content</li>
<li>Content</li>
<li>Content</li>
</ul>
<input type="submit" value="Submit" />
</form>
I want to send the content in the ul tag when clicking the submit button.
the submitted data should be
<li>Content</li>
<li>Content</li>
<li>Content</li>
How would I write this in jquery and with proper char. escaping for the <>'s