What are all the triggers that will trigger the submit if I have a page that has this form on it?
*NOTICE - I only have a text field and NO submit button.
Will the submit occur when I press enter and the cursor is in the text field?
@using (Html.BeginForm("Search", "Home", FormMethod.Get, new { @class = "navbar-form navbar-left", role = "search", id = "queryWithin" })) {
<div class="form-group">
<input type="text" class="form-control" placeholder="Search" id="searchQuery" name="searchQuery">
</div>
}