Prevent Firefox to auto-scroll to an HTML embedded iframe

Alexander Wirtz
Contributor
October 30, 2019

Hello Confluence Community

we have an Iframe macro embedded into one of our dashboards.  Somehow firefox will auto-scroll to that iframe upon opening the page. 

Code looks like this: <IFRAME WIDTH=500 HEIGHT=300 FRAMEBORDER=0 src="https://app.smartsheet.com/b/publish?EQBCT=29XXXXXXXXXXXXXXXXXXX50"></IFRAME>

This is disturbing because you can only use the top navigation one you scroll back up.

This problem does not appear in other browsers like Chrome or Edge. 

We noticed that firefox is writing an "#" at the end of the URL. 

Did someone had the same problem and managed to fix it? 

Kind regards
Alex

 

Firefox 69.0.3 (64 Bit)
Confluence Server 6.15.4

1 answer

1 accepted

0 votes
Answer accepted
Alexander Wirtz
Contributor
October 31, 2019

Got it myself. Here is the solution:

 

<embed src="https://app.smartsheet.com/b/publish?xxxxxxxxxxxxxxxxxxxxxxxxx" width="400" height="240" id="my_div" style="display:none;">

<script type="text/javascript" language="javascript">

window.onload=function()

{

setTimeout(func1, 2000);

};

function func1()

{

document.getElementById("my_div").style.display = "block";

}

</script>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events