I'm using JQuery to dynamically load a table when the user clicks a button. The code is this:
<table class="properties">
<tr>
<th>Id</th>
<th>Name</th>
</tr>
<tbody id="objects">
<tr><td colspan='3'>
<a class="button" href=""
return false;"
>Load objects</a>
</td></tr>
</tbody>
</table>
When the link is clicked, the table body content is replaced by the contents of ajaxClassObjects.act?type=5&id=9. This call returns as contents:
<tr><td>1</td><td>Test</td><td><a class='button' href=''>Edit</a></td></tr>
This works fine in Firefox, but in Internet Explorer I get the error "Unknown runtime error" when I click the link. The error seems to occur when putting the results in the page, since the server is called correctly and returns the results to the browser. I'm using the latest version of JQuery (compressed).
Can anyone help me with this?
Regards,
Jan Van den Bergh
_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
