How can I stop to redirect other tab when refreshing the browser?
<div class="tab1">User Details
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
</tr>
</table>
</div>
<div class="tab2">Add User
<form action="" method="post">
<p><label for="name">Name</label><input type="text" name="username"></p>
<p><label for="email">Email</label><input type="email" name="email"></p>
<input type="submit" name="submit" value="add"/>
</form>
</div>
When I click on the submit button, Form
is submitting but redirecting to the first tab.
Please suggest appropriate JavaScript or jQuery code.