I can calculate an order of a character I would like to open a HTML page at.
Is it possible (with jQuery) to write a script that will scroll down to a position of nth character in HTML markup?
Let's say this is my HTML:
<p>Hello</p>
<p>Hello</p>
<p>Scroll here</p>
<p>Hello</p>
How would I scroll down to 28th character in that HTML (so
Scroll here
will be where the page will start)?