Something has gone very wrong with Google Chrome as of late or I'm missing something. Something that I know worked not too long ago now doesn't work at all and produced an error message that makes no sense to me.
<form style="margin: 0px; margin-bottom:0px; margin-top:-1px;" name="menuitem_home" id="menuitem_home" method="POST" action="index.php" />
<input type="hidden" name="menuitemid" value="index.php" />
<table class="Navigationv5table" border="0" cellpadding="1" cellspacing="1" width="<?php echo $icons_width;?>" height="<?php echo $icons_height;?>" onclick="javascript:document.menuitem_home.submit();toggle('navigationdisplaypanel');" />
<tr>
<td width="100%" height="100%" align="center" valign="middle">
<img src="images/_interface/menu_icon_home.png">
</td>
</tr>
<tr>
<td align="center" valign="middle">
<font size="3" color="#FFFFFF">
Home
</font>
</td>
</tr>
</table>
</form>
When you click on the table the form should submit, but i get the error. The only way around the error is to create a submit button and click on it. That wont work for what I want to do here and this used to work. What is going on to cause it to generate the error: Uncaught TypeError: Object #<HTMLCollection> has no method 'submit'
Thanks.