How to hide a table row? (closest and prev didn't work)
I can't figure out how to hide 2 table rows. Given I pass a link to the below fucntion:
function remove_fields(link) {
$(link).prev("input[type=hidden]").val("1");
$(link).closest("tr.entry_header").css('background-color', 'red');
$(link).closest(".fields").hide();
}
Here is a piece of HTML code:
- <table>
- <col class="project" />
- <col span="7" />
- <tr class="entry_header">
- <td>Task</td>
- <td>18 Mar</td>
- <td>19 Mar</td>
- <td>20 Mar</td>
- <td>21 Mar</td>
- <td>22 Mar</td>
- <td>23 Mar</td>
- <td>24 Mar</td>
- </tr>
- <tr class="fields">
- <td>
- <select id="timesheet_activities_attributes_0_task_id" name="timesheet[activities_attributes][0][task_id]">
- <option value="1" selected="selected">Integration tests</option>
- <option value="3">Parametrize</option>
- <option value="2">QC tests</option>
- </select>
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_0_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][0][workdate]" type="hidden" value="2013-03-18" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_0_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][0][worktime]" size="3" type="text" value="1" />
- </td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_0_id" name="timesheet[activities_attributes][0][time_entries_attributes][0][id]" type="hidden" value="302" />
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_1_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][1][workdate]" type="hidden" value="2013-03-19" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_1_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][1][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_2_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][2][workdate]" type="hidden" value="2013-03-20" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_2_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][2][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_3_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][3][workdate]" type="hidden" value="2013-03-21" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_3_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][3][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_4_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][4][workdate]" type="hidden" value="2013-03-22" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_4_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][4][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_5_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][5][workdate]" type="hidden" value="2013-03-23" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_5_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][5][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0_time_entries_attributes_6_workdate" name="timesheet[activities_attributes][0][time_entries_attributes][6][workdate]" type="hidden" value="2013-03-24" />
- <input class="alignCenter" id="timesheet_activities_attributes_0_time_entries_attributes_6_worktime" name="timesheet[activities_attributes][0][time_entries_attributes][6][worktime]" size="3" type="text" />
- </td>
- <td>
- <input id="timesheet_activities_attributes_0__destroy" name="timesheet[activities_attributes][0][_destroy]" type="hidden" value="false" />
- <a href="#" onclick="remove_fields(this); return false;">remove</a>
- </td>
- </tr>
- Thanks and regards