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 7920427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T16:12:54+00:00 2026-06-03T16:12:54+00:00

I am looking for a widget/jquery plugin/hosted service or similar, that you can drop

  • 0

I am looking for a widget/jquery plugin/hosted service or similar, that you can drop onto a html-page and it will display and update tweets live that contains a certain hashtag, but only from one or more configurable accounts + moderation to approve other people’s tweets with same hashtag.

Think newspaper that wants to live-tweet an event, but have control over what shows up on the page from others.

I have searched, but not found anything suitable – and I am sure it must exist.

  • 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-06-03T16:12:56+00:00Added an answer on June 3, 2026 at 4:12 pm

    Hiya demo http://jsfiddle.net/RGrgM/ or http://jsfiddle.net/RGrgM/show/

    I have linked someone (my) tweets with this demo but you can link yours 🙂 I am lazy in twitter anyhooo 😛 this will help you. It will work with live feeds.

    Rest everything is there and you can right click and see the source as well as read below code. B-)

    This [link] might come handy: http://boxmodeljunkie.com/create-a-simple-twitter-widget-with-yui-3-and-yql/

    🙂

    D’uh don’t forget to accept and up vote innit!

    it uses:

      <title>Twitter Feed Widget with YUI 3 &amp; YQL - jsFiddle demo</title>
    
      <script type='text/javascript' src='/js/lib/yui-min-3.2.0.js'></script>
    

    Jquery code

    // top-level global namespace
    YUI.namespace('CIF');
    
    // accepts a tweet timestamp and produces relational time text
    YUI.CIF.relativeTime = function ( c ) {
    
        var origStamp = Date.parse( c ),
    
            curDate = new Date(),
    
            currentStamp = curDate.getTime(),
    
            difference = parseInt( ( currentStamp - origStamp ) / 1000, 10 ),
    
            dateArr = c.toString().split(' ');
    
        // if no difference, do nothing
        if ( difference < 0 ) {
            return false;
        }
    
        if ( difference <= 5 ) {
            return "Just now";
        }
    
        if ( difference <= 20 ) {
            return "Seconds ago";
        }
    
        if ( difference <= 60 ) {
            return "A minute ago";
        }
    
        if ( difference < 3600 ) {
            return parseInt( difference / 60, 10 ) + ' minutes ago';
        }
    
        if (difference <= 1.5 * 3600) {
            return "One hour ago";
        }
    
        if ( difference < 23.5 * 3600 ) {
            return Math.round( difference / 3600 ) + ' hours ago';
        }
    
        if (difference < 1.5*24*3600) {
            return "One day ago";
        }
    
        // produce date stamp for tweets older than a day
        return dateArr[3].replace( /\:\d+$/,'' ) + ' ' + dateArr[2] + ' ' + dateArr[1] + dateArr[5] !== curDate.getFullYear().toString() ? ' ' + dateArr[5] : '';
    
    };
    
    // load required modules and set up YUI instance
    YUI().use( 'node', 'substitute', 'yql', function ( Y ) {
    
        var n = Y.one( '#twitterFeed' ),
    
            // accepts a YQL JSON result object and produces a list of 
            // tweets using Y.substitute for templating
            formatTwitterFeed = function ( r ) {
    
                if (r) {
    
                    var s = r.query.results.statuses.status,
    
                        // HTML markup template
                        t = '<li><span class="status-text">{sText}</span> <span ' + 
                            'class="quiet status-time">{sTime}</span></li>',
    
                        l = s.length,
    
                        f = '<ul>',
    
                        i;
    
                    for ( i = 0; i < l; i++ ) {
    
                        // Y.substitute method to merge HTML markup and result object
                        f += Y.substitute( t, {
    
                            // convert usernames, hash tags and URLs to links
                            sText : s[i].text
                                .replace(/(http\S+)/i,'<a href="$1" target="_blank">$1</a>')
                                .replace(/(@)([a-z0-9_\-]+)/i,
                                    '<a href="http://twitter.com/$2" target="_blank">$1$2</a>')
                                .replace(/(#)(\S+)/ig, 
                                    '<a href="http://search.twitter.com/search' + 
                                    '?q=%23$2" target="_blank">$1$2</a>'),
    
                            sTime : YUI.CIF.relativeTime( s[i].created_at )
    
                        } );
    
                    }
    
                    f += '</ul>';
    
                    f += '<a class="button" href="http://twitter.com/tats_innit" title="Follow @Tats_innit on Twitter" target="_blank">Follow on Twitter&nbsp;&raquo;</a>';
    
                    // append output to target parent node
                    n.append( f );
    
                }
    
            };
    
        // YQL Twitter query limited to five results for a specified username
        Y.YQL( 'select * from twitter.user.timeline( 5 ) ' + 
                'where screen_name="@tats_innit"', formatTwitterFeed );
    
    });
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Looking for a jQuery MultiSelect Widget that can handle thousands of items. Really like
I am looking to create a javascript widget that can be hosted on other
I am looking for a widget that I can use. What am after is
I am looking for a searchable multiple select javascript widget that can handle filtering
I am looking at creating a page that the user can move around as
I am looking to create a web widget that can be easily integrated into
I am trying to find a plugin or widget type jQuery script I can
I have been looking for a javascript (hopefully jQuery) timezone chooser/picker/control widget that I
I'm looking into using the jQuery UI autocomplete widget to implement user lookup by
I am looking to have a UI element similar to that offered by the

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.