Tengo un acordeo al que he añadido la opción de que se puedan abrir varias ventanas.
Pero a la hora de entrar en la página siempre sale abierta por defecto,
que debo cambiar para que por defecto no se abra el acordeon?
<script type="text/javascript">
$(document).ready(function(){
for(var i=0;i< <?php echo $num_resultado ?>;i++){
$("#accordion"+i).accordion({ collapsible: true });
}
jQuery(document).ready(function(){
for(var i=0;i< <?php echo $num_resultado ?>;i++){
$('.accordion .head').click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
}
});
});
</script>
Código HTML:
for($i=0;$i < $num_resultado;$i++){
?>
<div style="float:left;">
<input type="checkbox" name="sss<?php echo $i ?>" id="ssss" />
</div>
<div id="accordion<?php echo $i ?>" >
<h3><a href="#">
<table>
<tr>
<td align="center" width="158">22/05/2010</td>
<td align="center" width="158">M09425f</td>
<td align="center" width="158">OFERTA 2x1</td>
<td align="center" width="140">Marketing</td>
</tr>
</table></a></h3>
<div >
<table class="campaña">
<thead>
<tr>
<th >Total destinos</th>
<th >Entregados</th>
<th > Aperturas totales</th>
<th >Aperturas únicas</th>
<th >Clicks totales</th>
<th >Clicks únicos</th>
<th >Clickers</th>
</tr>
</thead>
<tbody>
<tr>
<td>54456</td>
<td>456267</td>
<td>654</td>
<td>456</td>
<td>893</td>
<td>35</td>
<td >525254</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php
}
?>