I have a long list of nested divs. I am passing the ID of a particular element (actually a paragraph element) on the querystring and opening its div and parent onload. How
You could use the scrollIntoView function.
$(document).ready(function() { $('#divN').get(0).scrollIntoView(); });