I have an issue while submitting data using Jquery. When i submit the form the page is getting refreshed instead of updating div. Following is my code
<% using (Ajax.BeginForm("getAjaxTab2", new AjaxOptions
{
UpdateTargetId = "tabs-1",
InsertionMode = InsertionMode.Replace,
OnSuccess = "Done"
}))
{ %> <input type="hidden" id="id" name="id" />
<div class="sortby-row">
<ul>
<li>
<input type="submit" name="submit-keyword" value="go" />
</li>
</ul>
</div>
<% } %>
I have not written any jquery. Please help me
Any help will be appreciated