lightbox google crome
tenho o meu index.html nele tenho o seguinte codigo q abre o lightbox, nesse html tenho um iframe q abre os outros html nesse iframe
<script type="text/javascript">
$(function(){
$('iframe').load(function(){
$(this).contents().find('div#gallery > ul > li a').lightBox();
});
});
</script>
no iframe tenho o seguinte que chama o lightbox
<div id="gallery" >
Fotos
<ul>
<li>
<a href="fotos/4.jpg" title="fotos 2004">
<img src="fotos/4.jpg" width="72" height="72" alt="" />
</a>
</li>
<br/>
<input type="button" value="VOLTAR" onClick='fechar()'/>
</ul>
</div>
no internet explorer e firefox funciona beleza no google cromes nao abre o lightbox so abre a imagem no tamanho real quando clicado no Thumbnails, o que poderia ser feito ???
Discussão (5)
Carregando comentários...