1Just try. Just an example.
2
3 <html>
4 <head>
5 <script src="http://code.jquery.com/jquery-latest.min.js"></script>
6 </head>
7 <body>
8
9<button type="button">Add more !</button>
10 <table id="customers">
11 <tr>
12 <th>Product</th>
13 <th>Quantity</th>
14 <th>Price</th>
15 </tr>
16 <tr>
17 <td><input type="text" name="product" value="product.."></input></td>
18 <td><input type="number" name="quantity" value="quanty.."></input></td>
19 <td><input type="number" name="price" value="price.."></input></td>
20 </tr>
21
22 </table>
23
24 <script>3038</script>
39
40 </body>
41 </html>