Jump to content
Fórum Script Brasil
  • 0

Erro no firefox


Robson Gaeski

Question

Ola Senhores.

Uso o seguinte código para aumentar um Iframe dinamicamente conforme o conteúdo da pagina que vai abrir nele

function resizeIframe(Centro) {
            var iframe = document.getElementsByName(Centro);
            if (navigator.appName.toString() == "Netscape") {//FF 3.0.11, Opera 9.63, and Chrome 
                iframe[0].height = iframe[0].contentDocument.documentElement.scrollHeight; 
            }
            else {
                iframe[0].height = iframe[0].contentWindow.document.body.scrollHeight; //IE6, IE7 
                //iframe[0].Document.body.style.overflowY = "hidden";
            }
        }
O problema é que no Firefox Não Funciona. Ele entra no If
if (navigator.appName.toString() == "Netscape") {//FF 3.0.11, Opera 9.63, and Chrome 
                iframe[0].height = iframe[0].contentDocument.documentElement.scrollHeight; 
            }

Mas não faz nada.

Obs No Chrome e no IE Funciona Perfeitamente

alguém sabe o porque não funciona?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Esse negócio de navigator.appName não é uma boa, tenta assim:

function resizeIframe(Centro) {
    var iframe = document.getElementsByName(Centro);
    if(iframe[0].contentDocument){
        iframe[0].height = iframe[0].contentDocument.documentElement.scrollHeight; 
    }else if(iframe[0].contentWindow){
        iframe[0].height = iframe[0].contentWindow.document.body.scrollHeight;
    }
}

Link to comment
Share on other sites

  • 0
Esse negócio de navigator.appName não é uma boa, tenta assim:
function resizeIframe(Centro) {
    var iframe = document.getElementsByName(Centro);
    if(iframe[0].contentDocument){
        iframe[0].height = iframe[0].contentDocument.documentElement.scrollHeight; 
    }else if(iframe[0].contentWindow){
        iframe[0].height = iframe[0].contentWindow.document.body.scrollHeight;
    }
}

Ola Assim so funionou no Chrome.

No IEe o Firefox Não funcionou

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...