Seeking recommendations for improving the responsiveness and swipe functionality of this table on mobile devices. Considering using Angular ng-swipe, but first need to make the table display in a card-view format. Any suggestions on how to structure this table for mobile view?
<table class="table table-striped">
<tbody>
<tr>
<th>Job title</th>
<td>Web Developer</td>
<td>Java Developer</td>
<td>Sales Excutive</td>
<td>Project Manager</td>
</tr>
<tr>
<th>Salary</th>
<td>£ 25000-30000</td>
<td>£ 25000-30000</td>
<td>£ 25000-30000</td>
<td>£ 25000-30000</td>
</tr>
<tr>
<th>Job Type</th>
<td>Permanent</td>
<td>Contract</td>
<td>Permanent</td>
<td>Permanent</td>
</tr>
<tr>
<th>Location</th>
<td>Central London</td>
<td>London, Victoria</td>
<td>Bracknell</td>
<td>Central London</td>
</tr>
</tbody>
</table>