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>
Hi, I know this is an old issue, but it still exists. A bug request was created, and you can follow it and vote for it.
[CONFCLOUD-80933] Confluence page with iframe scrolls down to iframe directly upon editing the page - Create and track feature requests for Atlassian products.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.