On my map, it loads a table with a list of spots on the left, the map on the right, I want to be able to click on the table row and have it center the map and zoom over the marker. I load the table rows like this:
<table id="listOfStops" class="table table-striped">
<thead>
<tr>
<th>Stop #</th>
<th>Street Name</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
while($stmt -> fetch()) {
echo '<tr id="arrMarker[' . $i . ']">';
echo '<td>' . $gStopNumber . '</td>';
echo '<td>' . $gStreetName . '</td>';
echo '</tr>';
$i++;} $stmt -> close(); $mysqli -> close(); ?>
</tbody>
</table>
and now I just need the JQuery to complete my task I've tried googling but I guess it's not as popular as you would think. Thanks.