Possible Duplicate:
How to go to a specific element on page?
I would like to scroll to variable p as defined in the code below. is there a function i can use to scroll to it with javascript (not jquery). its a list item sitting inside of a scroll-able div, inside an un-ordered list.
var x = document.getElementsByClassName('listSection') [0].getElementsByTagName('ul')[0];
var p = x.lastChild;