Display Table Cell Values to Input Text Fields
Let's say table rows are populated with information and you want the "input text" to be filled with those info. Here's how: Sample HTML code for table: <table id="viewOwnersInfo" class="table table-hover" border="1"> <tbody> <tr> <th>Last Name</th> <th>First Name</th> <th>Middle Name</th> <th>Address</th> <th>Contact No.</th> <th>Tin</th> </tr> <tr> <td>Bonotan</td> <td>Melbert</td> <td>Recto</td> <td>P3A Ampayon, Butuan City</td> <td>09488588371</td> <td>TIN-2392399-23293</td> </tr> <tr> <td>Morales</td> <td>Edsel Matt</td...