У меня две разные формы на одной странице.
<form action="" method="post" onsubmit="ajax_send('<?print $userid;?>',this.msg.value); return false;"> <input id="msg" autocomplete="off" type="text" name="msg" stlye="width: 80px;" autofocus="autofocus" placeholder="Chat here" /> <input type="submit" /> </form>
а также
<form action="?page=about&id=0#comments" method="post"> <textarea class="editbox" id="exitbox" placeholder="Write a comment ..." name="newcomment"></textarea> <input type="submit" id="submit1" name="submit1"></div></div>
Теперь, когда я вводил что-то в <input id="msg"..>
и нажимаю enter, он отправляет вторую форму вместо первой.
Что мне не хватает?