I have the following code in mypage,
....
<input type="checkbox" title="Warehouse1" name="warehouse[]" id="selectedUser_1" class="select_checkbox" rel="warhouse_1" value="23">
<input type="checkbox" title="Warehouse2" name="warehouse[]" id="selectedUser_2" class="select_checkbox" rel="warhouse_2" value="24">
.....
//text box to enter current stock for the above warehouses
<input type="text" style="" name="current_stock[]" value="10" id="current_st_1" class="validtxt">
<input type="text" style="" name="current_stock[]" value="11" id="current_st_2" class="validtxt">
.....
<input type="button" id="check_warehouse_qty" name="check_warehouse_qty" value="OK">
Here when i click button i need to store repective checkbox value with textbox . for example
i need to get 23_10,24_11 . so that i can assign in hidden textbox and do further manipulation.
kindly advice on this.