Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

fabiodurgante

[Resolvido] function

Recommended Posts

tenho a seguinte funcao

function abre(id_integrante){
 $("#panel2").animate({width: "100%",opacity : 1}, 1)
 $("#panel2").animate({height: "430",opacity : 1},1300)

document.getElementById('iframe').src=id_integrante;
document.getElementById('botao').style.display="block" 
document.getElementById('iframe').style.display="block" 

}
o botao para fechar <input type="button" id="botao" value="VOLTAR" onClick='fechar()'/>

function fechar(){ funcao fechar

 $('#panel2').animate({height: "0",opacity:0},1300)
setTimeout(function(){document.getElementById('botao').style.display="none" }, 1300);       
setTimeout(function(){document.getElementById('iframe').style.display="none" }, 1300);       


minha div panel2
<div id="panel2" style="display:none" >

<center>
<iframe "id="iframe" name="iframe" src=""  width="600" height="300"   frameborder="0" scrolling="no" marginheight="0" marginwidth="0" > </iframe>
</center>
<input type="button" id="botao" value="VOLTAR" onClick='fechar()'/>
</div>


} 

 

é uma div sobre a outra panel1 div principal que quando chamado a funcao

<a href="#" onClick='abre("integrantes/1.html");' >

ele abre no div panel2 sobre o panel1 com o botao para fechar a div2 panel2 e voltar para a div1 panel1, porem da o seguinte erro Detalhes dos erros da página da Web

 

 

Mensagem: 'document.getElementById(...)' é nulo ou não é um objeto

 

o que posso fazer ??

Compartilhar este post


Link para o post
Compartilhar em outros sites

corrija o HTML:

 

<iframe id="iframe" name="iframe" src=""  width="600" height="300"   frameborder="0" scrolling="no" marginheight="0" marginwidth="0" > </iframe>

e use o console de erros do firefox

 

Ctrl+Shift+J

Compartilhar este post


Link para o post
Compartilhar em outros sites

valeu cara exatamente isso muito obrigado

 

<div id="panel2" style="display:none" >

 

<center>

<iframe "id="iframe" name="iframe" src="" width="600" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" > </iframe>

</center>

<input type="button" id="botao" value="VOLTAR" onClick='fechar()'/>

</div>

 

 

<iframe "id="iframe"

 

a " antes do id nao tem, desde ja agradeço pela ajuda valeuuuu

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.