Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/11/2012, 23:48
marcel_guzman
 
Fecha de Ingreso: noviembre-2012
Mensajes: 1
Antigüedad: 12 años, 4 meses
Puntos: 0
Pregunta lector de hashtag de twitter con jquery no actualiza en tiempo real :-(

Saludos!

Estoy haciendo una web y quiero implementar un lector de hastag de twitter usando su API.

El Gadget que trae incluido twitter no me funciona


alguien sabe como ayudarme? ya logre hacer algo con un fremework que encontre pero no logro hacer que se actualice en tiempo real

asi es lo que llevo

Código:
<script type="text/javascript">
        google.load("feeds", "1");
        $(document).ready(function () {
            $('#hash').hashtag({ feedurl: 'http://search.twitter.com/search.rss?q=twitteros', showdetail: false, controlsalwaysvisible: true, entries: 10, controls: true, target: "_blank" });
        });
    </script>

Parte del JS

Código:
(function($) {
    $.fn.extend({
        hashtag: function(options) {
            var settings = $.extend({
                controls: true,
                switchInterval: 5000,
                feedurl: '',
                showdetail: true,
                moretext: '[...]',
                controlsalwaysvisible: true,
                entries: 10,
                target : "",
				headlineLength:90
            }, options);
            return this.each(function() {
                var direction = "forward";
                var wrapper = $(this);
                var interval;
                var prevIndex = 0;
                var curIndex = 0;
                var mode = 'auto'; //auto, manual
                var next, prev, play, pause;
                var containerWidth;
                var left;
                var total;
                var allHeadlines;
                var controlbar;
                var previewWraper;
                var mouseEntered = 0;
                function setPlayingStatus(isPlaying) {
                    if (isPlaying) {
                        play.css('display', 'none');
                        pause.css('display', '');
                    }
                    else {
                        play.css('display', '');
                        pause.css('display', 'none');
                    }
                }


Tengo el otro JS pero no se como enviarselos :P

ayudenme se los agrradeceria en el alma!