How can I stop my page from automatically scrolling to a rich text?

0
I have a page with a container that has a height limit and overflow behavior set to scroll. This container contains a long form with many inputs, and about half way down there is a Rich Text widget. Whenever I open the page, however, if the rich text is visible, the page will open with the container scrolled down to the rich text. Is there a way to stop or override this behavior?
asked
1 answers
0

I am not having an idea here what might be going wrong u can check for some of the attributes of rich text like auto focus or any thing is CSS or java script which is putting focus on it.

to check which element has focus once page has loaded press f12 go to console and type 

document.activeElement

 

this will tell you whihc element in the rendered page has focus. now you can use this info to remove the focus by trouble shooting it.

Hope it helps

answered