I have a div inside of a table which is inside of a form that I would like to update
<form id="login_form" method="post" action="#" onsubmit="return false;"><table>
<tr><td>Username</td><td><input type="text" name="name" id="login_name"></td></tr>
<tr><td>Password</td><td><input type="password" name="password" id="login_password"></td></tr>
<tr><td><input type="checkbox" name="keep_logged" id="login_keep" checked></td><td>Keep me logged in on this computer</td></tr>
<tr><td colspan=2><br><INPUT type="submit" name="Submit" value="Submit" onclick="submitLogin();">
<INPUT type="reset" name="Cancel" value="Cancel" id="login_cancel"></td></tr>
<tr><td colspan=2><div id="result_div"></div></td></tr>
</table>
</form>
I have tried numerous methods to update that div, but I can not seem to get it to work. For example:
$("div#result_div").html("My text is changed!");
$("#result_div").html("My text is changed!");
document.getElementById('result_div').innerHTML = 'My Text is changed!';
I've tried changing it from a div to a span with the same results. If I move the div outside of the table/form the text update works perfectly, so I'm fairly certain my code is being excuted correctly.
Any help would be apperciated.
Thanks.
edit: I realized this is inside of a Jquery-ui dialog box, I'm sorry for ommiting that piece of information orginally.