I have a site ran in jQuery, and I am loading it in a browser object in C#. The site loads fine and functions as expected. The only issue I am experiencing is that when new data appears on the screen, no scroll bar displays in the browser object, and the content goes past the bottom of the browser object, out of view.
I'm looking for a solution to this. Here is what I was thinking:
Is there a C# browser object event that is passed when data is sent/received via Ajax? If so, can I tell the object to scroll to the bottom of the page?
Is there a way w/ JS that I can add on my webpage that makes the page auto-scroll? Though I don't think this would work because the C# browser object never technically reaches the bottom of the page. It will continue to go as long as you enter data.
Any other options anyone can think of?