This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do i go all the way down on my facebook wall?
11-09-2012, 04:25 PM
Post: #1
How do i go all the way down on my facebook wall?
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?

Ads

Find all posts by this user
Quote this message in a reply
11-09-2012, 04:34 PM
Post: #2
 
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();

Ads

Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)