Hello,
How can I combine this table?
Automatically adds the label "</tr> </table>"
to the end of the table I call with Ajax
Is it possible to prevent this?
index.php
<table border="1" width="40%" id="dynamic_content">
<td> </td>
<td> </td>
</tr>
</table>
$.ajax({
url:"ajax.php",
method:"POST",
success:function(data)
{
$('#dynamic_content').html(data);
}
});
ajax.php
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>