Retrieve data from Html Table
Hi there,
I hava a form with some input and a table, like this
- <form id='form'>
- <label >City</label>
- <input type='text'>
- <table>
- <th>Link</th>
- <th>Description</>
- <tboby>
- <tr>
- <td>Link1</td>
- <td>Description 1</td>
- </tr>
- <tr>
- <td>Link2</td>
- <td>Description 2</td>
- </tr>
- <tr>
- <td>Link3</td>
- <td>Description 3</td>
- </tr>
- ............
- <button type ='button'>Submit</button>
I need store all this data into 2 table in mysql by ajax
My problem is I can't understand how store html table data with jQuery to pass it at php.