[jQuery] Strange behavior of form plugin
Hello. I took this(http://www.malsup.com/jquery/form) plugin. It works
great if I don't use iframes. If I submit form with iframe : true and
the script on the server outputs some html in the answer, the most of
the tags in the text are stripped.
if the output is
<tr>
<td><a href="somewhere">link on</a> something</td>
<td>something other</td>
</tr>
the responseText in jquery is
<a href="somewhere">link on</a> something
something other
What has caused such behavior?