Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 21st, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //Run this on the person's facebook profile page to expand the wall
  2. var INTERVAL=2000; // Time between wall expansions, in milliseconds
  3. var MAX_TRIES=50;  // How many times to try expanding the wall
  4.  
  5. function expand(){
  6.   var foo=document.getElementById('profile_pager').children[0].children[0].children[0].children[0].onclick;
  7.   if (typeof(foo)!='undefined'){
  8.     foo();
  9.   }
  10. }
  11. for (var i = 1; i < MAX_TRIES; i++){
  12.   setTimeout(expand,i*INTERVAL);
  13. }