This is my diploma project, and I want to insert a row at the start with a choose equipment select but I don’t know how to use jQuery.
<form>
<table border="1">
<tr>
<td>Kod Peralatan</td>
<td>Nama Peralatan</td>
</tr>
<tr>
<td>
<select>
<option>Choose Equipment</option>
</select>
</td>
<td> </td>
</tr>
</table>
<table>
<tr>
<td align="right">
<button type="button">Add Row</button>
</td>
</tr>
</table>
</center>
</form>
I think this is what you may be looking for.
This will dynamically add a new row to your equipment table, and create a new drop down list, which is populated.
You can check out the updated JS Fiddle here:
http://jsfiddle.net/b3gYk/1/