Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6536895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:33:07+00:00 2026-05-25T10:33:07+00:00

I am using a Twitter gem , however I was hoping to understand how

  • 0

I am using a Twitter gem, however I was hoping to understand how to run it in the background after the page loads.

Currently I need to wait for the page to render, since the gem is working to query some tweets. Once the gem gets its response, the page loads.

However, I was hoping to display a “loading” GIF in my Twitter feed “div” tag, and once the Twitter information is retrieved, replace this GIF with the respective content.

I read several posts how to use a form and the “:remote => true” tag on the form in order to do AJAX calls that won’t reload the respective page, but I don’t want to force visitors to click a link in order to see Twitter tweets.

I’m using:

  • Ruby version: 1.8.7
  • Rails version: 3.0.9
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T10:33:07+00:00Added an answer on May 25, 2026 at 10:33 am

    There are multiple ways of doing this; A fairly common practice and the way I would go about this is to use the the jQuery’s $.ajax() to get data from the server and update the page.

    Client-side:

    1. Load the page normally and show some kind of loading indicator.

    2. Make a call to $.ajax():

      $.ajax({
        type: "GET",
        url: userId + '/tweets', // i.e. tweets is a nested resource of user
        success: function(tweets){
          $('#loading_indicator').hide();
      
          // Use the tweets that are returned to update the DOM
          $.each(tweets, function(ndx, tweet) {
            $('#tweet_list').append('<li>'+tweet.body+<'/li'>);
          });
        }
      });
      

    Server-side:

    Have an action in a controller that sends out tweets as JSON to be consumed by the client-side success callback. Setup the routing for this action to be compatible with url in $.ajax():

    class TweetsController < ApplicationController
    
      def show
        # collect tweets...
        render :json => @tweets
      end
    
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In attempting to upgrade to Bootstrap 2 (using twitter-bootstrap-rails gem), it seems that page-specific
for the page I am doing needs a login authentication using Twitter (using tweetphp
I'm using a twitter gem which basically accesses twitter and lets me grab tweets,
We just finished implementing OAuth in our RoR application using the Twitter gem .
I am using Twitter gem (1.7.1) in ruby. I want to get my member
I am using Rails 3.2 and the twitter-bootsrap-rails gem (link) . I have a
I'm using Twitter's Bootstrap to create the HTML/CSS for my website. I run into
I am using the Tweetstream gem to retrieve statuses from Twitter. This works: Tweetstream::Client.new('user',
I'm using the twitter gem and it has a mistake in one the methods
I'm working on a ruby app that updates a twitter account using 'twitter' gem.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.