$(document).ready(function() {
   $('#load-twit').ajaxStart(function() {
      $(this).show(); 
      }).ajaxStop(function() { 
      $(this).hide(); 
      }); 
   $.ajax({
      url: "/twitter",
      cache: false,
      success: function(html){
         $("#twitter-lister").append(html);
      }
   });
});