Twitist Forums
How do i go all the way down on my facebook wall? - Printable Version

+- Twitist Forums (http://twitist.com)
+-- Forum: Facebook forums (/forum-14.html)
+--- Forum: General facebook and life forums (/forum-25.html)
+--- Thread: How do i go all the way down on my facebook wall? (/thread-29950.html)



How do i go all the way down on my facebook wall? - Phantomsink399 - 11-09-2012 04:25 PM

I want to see my posts from when i just started facebook, but i have been using facebook for close to two years so you can probably guess my wall is very long now is there any way to scroll down to the bottom faster or get there by a link?


- Vecinu - 11-09-2012 04:34 PM

Well facebook doesn't let you do it the "normal" way (i.e. provide you a link or make it easier for you), but i've been bored enough to draft a quick javascript function to do that for you. You just need to go to your profile page, and then paste this into your browser address bar and hit enter; then you wait a few seconds (or minutes, if you say your wall is large), and wait for it to finish (basically it automates clicking the "older posts" link until it loads all your wall, so it will take some time, but at least you won't have to do it yourself). So, here's the code you need to paste in the address bar:

jfunction ShowAllWall(){
var timeOut=2000;
var id="standard_status";
if (document.getElementById("id")==null)
{
ProfileStream.getInstance().
showMore();
goDown();
setTimeout("ShowAllWall();",timeOut);
}else{
goDown()
};
};
function goDown(){
window.scrollTo(0,document.body.
clientHeight);
}; ShowAllWall();