104
rated 0 times
[
105]
[
1]
/ answers: 1 / hits: 11202
/ 5 Years ago, thu, january 31, 2019, 12:00:00
This must be a very easy and simple but im finding it hard to get it done.
I have a list of rows with 6 Column which shows data from mysql. I would like to make each row clickable instead of cell which opens a new url in new tab.
Here is the structure.
<tr> <a target=_ href=https://www.google.com>
<td style=text-decoration: underline; font-size: 15px;> </td>
<td><?php echo $row['district']; ?></td>
<td><?php echo $row['program']; ?></td>
<td><?php echo $row['gender']; ?></td>
<td><?php echo $row['yoa']; ?></td>
<td><?php echo $row['email']; ?></td>
</a></tr>
Above Method Don't work.
Any Help is appreciated
More From » jquery