I have created two form in one page each form having it's own button . when I click a first form button should refresh both form at the same time.
my first form is look like this
<form id="search_form" method="post" action="do_searchID.php">
<label>Enter Employee Number</label>
<input type="text" name="emp_id" id="emp_id">
<button type="submit" name="search">Search</button>
</form>
my second form is look like this at the same page
<form method="post" action="do_searchID.php">
<label>Full Name</label>
<input type="text" id="full_name" value="">
<button type="submit" name="submit_update">Update Now </button>
</form>
from this how can write jquery to do above task. Please help me I have no idea by doing this task I have to retrieve data's from database.