What controls the page or cursor focus on the Portal? I have web pages containg multistep forms loading and appearing on screen in browser midway or lower down the page. I can see that it is loading on the first (empty) input field. Is there a way to control or change this? Sorry if it is something obvious but couldn't find anything ootb!
Thanks!
Thank you sir. Sorry for the delayed response - somehow missed the notification!
I was facing a similar problem whereby I had long text displaying before the first input field and the page scrolled half way down. I needed to start the page at the top so I inserted some JS to force it to scroll back to the top on document.ready.
$(document).ready(function() {
setTimeout(()=> { window.scrollTo(0, 0); }, 500);
});
Fubar
69
Super User 2025 Season 1
oliver.rodrigues
49
Most Valuable Professional
Jon Unzueta
43