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
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>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.