I have a searchbar and a comment form on one page. The searchbar has some nice little features, like livesearch und suggestion and is submitted via [ENTER]. The comment form is validated by the jquery-validate plugin and submitted by clicking the submit button.
The searchbar is working perfect on pages where it is the only form, but on pages with comment form enabled the submitting with [ENTER] won't work.
What can I do to make this possible?
Code looks like this:
Search:
<form action="/goto/doSearch.php">
<label>Search</label>
<input id="searchBox" type="text" name="search" value="type and hit enter">
</form>
Comment:
<form id="rating" action="/goto/doComment.php" method="post">
<input type="hidden" name="id" value="1"></input>
<label for="cname">Name</label>
<input class="required" id="cname" type="text" value="Your name" name="author">
<input type="submit" name="submit" class="btn" value="Submit">
</form>