I have several records in PHP, and when I click on a link "More information" opens a <div>
hidden, but clicking this link opens the <div>
hidden from all records.
My Javascript code is as follows:
function abreFecha(sel) {
$(sel).slideToggle();
}
css:
.mapa{
display:none;
}
link:
<div class="maisinfo"><a href="javascript:abreFecha('.mapa')">+</a></div>
div:
<div class="mapa"> <?php echo $row_RS_busca['mapa']; ?> </div>
And another detail, all this is inside a PHP do. In other words, it is showing all records.
As requested! I'm posting the html structure<?php do { ?>
<div class="caixa">
<div class="maisinfo"><a href="javascript:abreFecha('.mapa')">+</a></div>
<table width="510" height="72" border="0" cellpadding="0" cellspacing="4">
<tr>
<td width="15" rowspan="3" align="left" valign="top"><p> </p></td>
<td height="31" colspan="2"><span class="style5"><?php echo $row_RS_busca['nome']; ?></span></td>
</tr>
<tr>
<td width="29" height="16" align="left" class="style3"><img src="imagens/tel.png" width="10" height="15" /></td>
<td width="450" align="left" valign="bottom" class="style6"><?php echo $row_RS_busca['telefone']; ?></td>
</tr>
<tr>
<td height="17" align="left" class="style3"><img src="imagens/local.png" width="10" height="17" /></td>
<td align="left" valign="top" class="style6"><?php echo $row_RS_busca['endereco']; ?></td>
</tr>
</table>
</div>
<br/>
<div class="mapa"> <?php echo $row_RS_busca['mapa']; ?> </div>
<?php } while ($row_RS_busca = mysql_fetch_assoc($RS_busca)); ?>