msjolund / jquery-esn-autobrowse

Autobrowse jquery plugin
http://msjolund.github.com/autobrowse/
131 stars 44 forks source link

Getting data from service #10

Open naveedrafi opened 11 years ago

naveedrafi commented 11 years ago

url: function (offset) { return "http://twitter.com/status/user_timeline/ParisHilton.json?count=10&page=OFFSET&callback=?".replace(/OFFSET/, 1+Math.round(offset/10)); }

there is no as such source available for this plugin. kindly provide a good example how can we pull data from a service in asp.net. it will be highly appreciated. Thanks.

msjolund commented 11 years ago

As long as your service returns JSON it should not matter how the service is written (asp.net, php etc.). jQuerys getJSON() is used, or as an option jquery.post(). It would be easy to add an option for other stuff as well if jQuery supports it.

naveedrafi commented 11 years ago

$(".Reviews").autobrowse({ url: function (offset) {

                  var id = '<%=Request.QueryString["Id"] %>';

// var a = $.getJSON("Services/AjaxRequestHandler.aspx?clientUserId="+id+"&count=10&page="+offset+"&callback=?".replace(/OFFSET/, 1+Math.round(offset/10))) // ,function(resp){ // alert(resp); // });

                $.ajax({
                type: "POST",
                url: 'Services/ClientUserServices.asmx/LoadClientUserReviews',
                //data: parameters,
                contentType: "application/json; charset=utf-8",
                //data: { fromDate: new Date(), toDate: new Date(), clientUserId:<%=Request.QueryString["Id"] %>},

                data: "{'clientUserId':'" + id + "'}",
                dataType: "json",
                //data: 'fromDate=' + new Date() + '&toDate=' + new Date() + '&clientUserId='+<%=Request.QueryString["Id"] %>,

                success: function (msg) {
                    //alert(msg);
                    alert(msg.d);
                  return msg.d+"?count=10&page=OFFSET&callback=?".replace(/OFFSET/, 1+Math.round(offset/10));
                },
                error: function (e) {
                    $(divToBeWorkedOn).html("Unavailable");
                }
            });

            },
            template: function (response)
            {
                    var markup='';
                    for (var i=0; i<response.length; i++)
                    {
                        markup+='<div style="background:rgba(0, 0, 0, 0.1);margin: 2% 2% 2% 2%;border-radius: 0.5em 0.5em 0.5em 0.5em;"><table>';
                        markup += '<tr><td>';
                        markup += '<img src="' + response[i].user.profile_image_url + '" /></td>';
                        markup += '<td style="margin-top:-15px">'+response[i].text+'</td>';
                        markup += '</tr></table></div>';
                    }

                    return markup;
            },
                    itemsReturned: function (response) { return response.length; },
                    max: 100,
                    loader: '<div class="loader"></div>',
                    sensitivity: 100,
            finished: function () { $(this).append('<p style="text-align:center"><b>No More Reviews to show</b></p>') }
           });

my service is returning Json correctly but still nothing happened template never gets fired. :(

naveedrafi commented 11 years ago

plese help i dont know whats wrong this now. i have copied the json of twitter paris hilltion in variable like this

var data = [{"coordinates":null,"place":null,"retweet_count":306,"in_reply_to_user_id":null,"truncated":false,"created_at":"Mon Sep 17 07:23:13 +0000 2012","id_str":"247596555413123072","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747382,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247596555413123072,"in_reply_to_user_id_str":null,"favorited":false,"text":"Going to bed. Sweet dreams everyone."},{"coordinates":null,"place":null,"retweet_count":87,"in_reply_to_user_id":null,"truncated":false,"created_at":"Mon Sep 17 07:20:32 +0000 2012","id_str":"247595878381137920","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747430,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247595878381137920,"in_reply_to_user_id_str":null,"favorited":false,"text":"Just watched the movie Arbitrage, I loved it. Richard Gere was amazing. Such a suspenseful thriller with a great story line."},{"contributors":null,"coordinates":null,"in_reply_to_user_id_str":null,"place":null,"in_reply_to_user_id":null,"created_at":"Mon Sep 17 02:40:57 +0000 2012","retweet_count":78,"user":{"profile_sidebar_fill_color":"E5507E","id":24929621,"favourites_count":2084,"screen_name":"ParisHilton","contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","location":"\u00dcT: 35.975487,-115.141709","profile_background_color":"FF66C9","utc_offset":-28800,"geo_enabled":false,"name":"Paris Hilton","lang":"en","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","protected":false,"profile_link_color":"E872C5","statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"notifications":false,"description":"Living Life to the Fullest!","profile_use_background_image":true,"followers_count":8747340,"profile_text_color":"544640","following":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","verified":true,"profile_sidebar_border_color":"CC3366","url":"http:\/\/www.ParisHilton.com","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"created_at":"Tue Mar 17 18:45:05 +0000 2009","default_profile_image":false,"profile_background_tile":true},"retweeted":false,"truncated":false,"id_str":"247525518709231616","in_reply_to_screen_name":null,"in_reply_to_status_id":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","geo":null,"id":247525518709231616,"in_reply_to_status_id_str":null,"favorited":false,"text":"Amazing day! \u263a\u2661 RT @RiverViiperi: Very relaxed after @ancientbathsny with my lovely @ParisHilton perfect end to an amazing #NYfashionweek"},{"coordinates":null,"place":null,"retweet_count":44,"in_reply_to_user_id":null,"truncated":false,"created_at":"Mon Sep 17 01:13:43 +0000 2012","id_str":"247503568175775744","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747398,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/twitter.com\/download\/iphone\" rel=\"nofollow\"\u003ETwitter for iPhone\u003C\/a\u003E","contributors":null,"geo":null,"id":247503568175775744,"in_reply_to_user_id_str":null,"favorited":false,"text":"Amazing day at @AncientBathsNY with @RiverViiperi. The perfect place to relax after #NYFashionWeek. Feeling incredible! #YES!"},{"coordinates":null,"place":null,"retweet_count":552,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sun Sep 16 03:11:27 +0000 2012","id_str":"247170807250419713","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54110,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747384,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247170807250419713,"in_reply_to_user_id_str":null,"favorited":false,"text":"11:11 - Make A Wish... #LovingLife"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":151,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sun Sep 16 02:02:20 +0000 2012","id_str":"247153413064892416","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54112,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8746510,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247153413064892416,"in_reply_to_user_id_str":null,"favorited":false,"text":"#Winning with @RiverViiperi! #YES! I love theme parks! \u263a\u2661 http:\/\/t.co\/5xN7yg6I"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":87,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sun Sep 16 01:54:02 +0000 2012","id_str":"247151325350092802","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12150,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54112,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8746035,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247151325350092802,"in_reply_to_user_id_str":null,"favorited":false,"text":"#We\u2661RollerCoasters! @RiverViiperi @JustinHopwood_ @M_AlTurki #YES! http:\/\/t.co\/a3z8NGiA"},{"contributors":null,"coordinates":null,"in_reply_to_user_id_str":null,"place":null,"favorited":false,"created_at":"Sun Sep 16 01:34:49 +0000 2012","possibly_sensitive_editable":true,"retweet_count":87,"user":{"profile_sidebar_fill_color":"E5507E","id":24929621,"favourites_count":2084,"screen_name":"ParisHilton","contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","location":"\u00dcT: 35.975487,-115.141709","profile_background_color":"FF66C9","utc_offset":-28800,"geo_enabled":false,"name":"Paris Hilton","lang":"en","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","protected":false,"profile_link_color":"E872C5","statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"notifications":false,"verified":true,"description":"Living Life to the Fullest!","profile_use_background_image":true,"followers_count":8747429,"profile_text_color":"544640","following":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","profile_sidebar_border_color":"CC3366","url":"http:\/\/www.ParisHilton.com","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"created_at":"Tue Mar 17 18:45:05 +0000 2009","default_profile_image":false,"profile_background_tile":true},"in_reply_to_user_id":null,"truncated":false,"id_str":"247146487404965888","retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","geo":null,"in_reply_to_status_id":null,"id":247146487404965888,"in_reply_to_status_id_str":null,"text":"#GoodTimes at @SixFlags today with @RiverViiperi @JustinHopwood_ &amp; @M_AlTurki! http:\/\/t.co\/Y58KMUGI"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":123,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 19:53:51 +0000 2012","id_str":"247060680786710528","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54113,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8746561,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247060680786710528,"in_reply_to_user_id_str":null,"favorited":false,"text":"Rocking @TheBlondsNY! Love @DavidBlond &amp; @PhillipeBlond! #BlondesRule http:\/\/t.co\/qJzNznPO"},{"coordinates":null,"place":null,"retweet_count":48,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 19:50:40 +0000 2012","id_str":"247059882669404161","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747301,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247059882669404161,"in_reply_to_user_id_str":null,"favorited":false,"text":"Love you lil beautiful sis. \u263a\u2661 RT @MiSsKaYlaHuNt: @ParisHilton My Beautiful American Big Sis!\u2661 You are stunning Paris! \u263a xoxo"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":688,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 19:08:36 +0000 2012","id_str":"247049293066825728","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54110,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747441,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":247049293066825728,"in_reply_to_user_id_str":null,"favorited":false,"text":"Life only comes around once. So do whatever makes you happy &amp; be with whoever makes you smile. \u263a http:\/\/t.co\/rDhw5S55"},{"coordinates":null,"place":null,"retweet_count":326,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 07:31:23 +0000 2012","id_str":"246873834555330561","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747384,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246873834555330561,"in_reply_to_user_id_str":null,"favorited":false,"text":"Went and saw Nemo in 3D tonight. So cute! In bed watching Safe House. I love movie nights. \u263a"},{"coordinates":null,"place":null,"retweet_count":92,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 02:07:10 +0000 2012","id_str":"246792242742849536","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747456,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246792242742849536,"in_reply_to_user_id_str":null,"favorited":false,"text":"Congrats @M_alturki on your new movie opening today #Arbitrage with Richard Gere &amp; Susan Surandon by @Njarecki. Look forward to seeing it.\u263a"},{"coordinates":null,"place":null,"retweet_count":288,"in_reply_to_user_id":null,"truncated":false,"created_at":"Sat Sep 15 00:57:44 +0000 2012","id_str":"246774770937503746","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747296,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"web","contributors":null,"geo":null,"id":246774770937503746,"in_reply_to_user_id_str":null,"favorited":false,"text":"Chilling in bed watching Taken. Seen it so many times, never get sick of this movie. @LiamNeeson is bad ass! #YES!"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":92,"in_reply_to_user_id":null,"truncated":false,"created_at":"Fri Sep 14 23:39:32 +0000 2012","id_str":"246755088658493440","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747404,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246755088658493440,"in_reply_to_user_id_str":null,"favorited":false,"text":"So much fun last night! #I\u2661NYC RT @M_AlTurki: @RiverViiperi @JustinHopwood_ @ParisHilton #NYC http:\/\/t.co\/vE7V2y9b"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":70,"in_reply_to_user_id":null,"truncated":false,"created_at":"Fri Sep 14 23:30:03 +0000 2012","id_str":"246752704968421376","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747202,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246752704968421376,"in_reply_to_user_id_str":null,"favorited":false,"text":"\u263a RT @PHpurses: Europe, we are happy to announce our New Collection is online at Zalandos! PHpurses is growing! #YES! http:\/\/t.co\/H1mYgn0S"},{"coordinates":null,"place":null,"retweet_count":83,"in_reply_to_user_id":null,"truncated":false,"created_at":"Fri Sep 14 05:36:24 +0000 2012","id_str":"246482512002576384","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747456,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246482512002576384,"in_reply_to_user_id_str":null,"favorited":false,"text":"Danny rocks! \u263a\u2661 RT @RiverViiperi: Listening\/Escuchando a @DJDannyAvila en @LavoNY con @ParisHilton &amp; @justinhopwood_ un compa\u00f1ero de #ibiza"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":1381,"in_reply_to_user_id":null,"truncated":false,"created_at":"Fri Sep 14 02:23:45 +0000 2012","id_str":"246434029128278017","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":null,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":null,"statuses_count":12152,"follow_request_sent":null,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8747441,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246434029128278017,"in_reply_to_user_id_str":null,"favorited":false,"text":"At @LadyGaga's FAME fragrance launch party at The Guggenheim Museum. Such a beautiful event! http:\/\/t.co\/rnS0iLFO"},{"coordinates":null,"place":null,"possibly_sensitive_editable":true,"retweet_count":107,"in_reply_to_user_id":null,"truncated":false,"created_at":"Thu Sep 13 23:03:38 +0000 2012","id_str":"246383665909751808","user":{"profile_sidebar_border_color":"CC3366","id":24929621,"screen_name":"ParisHilton","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"default_profile_image":false,"profile_background_tile":true,"location":"\u00dcT: 35.975487,-115.141709","profile_sidebar_fill_color":"E5507E","utc_offset":-28800,"favourites_count":2084,"name":"Paris Hilton","contributors_enabled":false,"lang":"en","time_zone":"Pacific Time (US & Canada)","protected":false,"profile_background_color":"FF66C9","geo_enabled":false,"is_translator":false,"default_profile":false,"notifications":false,"description":"Living Life to the Fullest!","profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","profile_link_color":"E872C5","following":true,"statuses_count":12150,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54111,"verified":true,"profile_use_background_image":true,"url":"http:\/\/www.ParisHilton.com","followers_count":8744700,"profile_text_color":"544640","created_at":"Tue Mar 17 18:45:05 +0000 2009","profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png"},"retweeted":false,"in_reply_to_screen_name":null,"possibly_sensitive":false,"in_reply_to_status_id":null,"in_reply_to_status_id_str":null,"source":"\u003Ca href=\"http:\/\/ubersocial.com\" rel=\"nofollow\"\u003EUberSocial for BlackBerry\u003C\/a\u003E","contributors":null,"geo":null,"id":246383665909751808,"in_reply_to_user_id_str":null,"favorited":false,"text":"http:\/\/t.co\/ClepJrp8 Backstage at @NewsicalMusical with @RiverViiperi &amp; @PerezHilton last night. ... http:\/\/t.co\/OWGv9CHc"},{"contributors":null,"coordinates":null,"in_reply_to_user_id_str":null,"place":null,"in_reply_to_user_id":null,"created_at":"Thu Sep 13 19:55:34 +0000 2012","possibly_sensitive_editable":true,"retweet_count":112,"user":{"profile_sidebar_fill_color":"E5507E","id":24929621,"favourites_count":2084,"screen_name":"ParisHilton","contributors_enabled":false,"time_zone":"Pacific Time (US & Canada)","location":"\u00dcT: 35.975487,-115.141709","profile_background_color":"FF66C9","utc_offset":-28800,"geo_enabled":false,"name":"Paris Hilton","lang":"en","is_translator":false,"default_profile":false,"profile_background_image_url":"http:\/\/a0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","protected":false,"profile_link_color":"E872C5","statuses_count":12152,"follow_request_sent":false,"id_str":"24929621","profile_background_image_url_https":"https:\/\/si0.twimg.com\/profile_background_images\/432802580\/Screen_shot_2012-02-23_at_11.24.06_AM.png","listed_count":54112,"notifications":false,"description":"Living Life to the Fullest!","profile_use_background_image":true,"followers_count":8746293,"profile_text_color":"544640","following":true,"profile_image_url_https":"https:\/\/si0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","verified":true,"profile_sidebar_border_color":"CC3366","url":"http:\/\/www.ParisHilton.com","profile_image_url":"http:\/\/a0.twimg.com\/profile_images\/1848771000\/Screen_shot_2012-02-23_at_11.23.21_AM_normal.png","friends_count":4180,"created_at":"Tue Mar 17 18:45:05 +0000 2009","default_profile_image":false,"profile_background_tile":true},"retweeted":false,"truncated":false,"id_str":"246336339409256450","in_reply_to_screen_name":null,"in_reply_to_status_id":null,"possibly_sensitive":false,"source":"\u003Ca href=\"http:\/\/twitter.parishilton.com\" rel=\"nofollow\"\u003ETweets from Paris Hilton\u003C\/a\u003E","geo":null,"id":246336339409256450,"in_reply_to_status_id_str":null,"favorited":false,"text":"Like my new look on the Femina Magazine cover I did for China? http:\/\/t.co\/QzZm8Evs"}];

return data+"?count=10&page=OFFSET&callback=?".replace(/OFFSET/, 1+Math.round(offset/10));

Again its not workign :( and i wonder why there is no blog posts related to this jQuery plugin on the whole google :(

SamJoan commented 11 years ago

Hi man, this is a rather simple plugin for infinite scrolling, there's not much docs..

We are able to help you if you have the time, otherwise it would be wise perhaps to use another plugin. As @msjolund said, there's no reason why this plugin wouldn't be suitable for you.

What is the problem you are having? What errors are you getting? What are you attempting to do? Can you paste some code in pastie.org?

* ps * can i correct your code tags?

naveedrafi commented 11 years ago

Hi droope thanks for your reply but i want to use this plugin at any cost its amazing the only problem am having is when i got the json frm a Web Service its not being rendered on the page even i just copied the json of "paris hiltion" in a local variable in scirpt and tries something like this

var json = "My JSON Rerturned by Web Service" return json +"?count=10&page=OFFSET&callback=?".replace(/OFFSET/, 1+Math.round(offset/10));

the json is not being rendered on the page because

template: function (response) { //this function never gets fired }

Although the twitter sample stated above works fine.

P.S: yes sure you can modify tags to whatever you want.

naveedrafi commented 11 years ago

there is no script error but nothing rendered on page

msjolund commented 11 years ago

@naveedrafi Please create a reproduction at http://jsfiddle.net/, or at least provide some of your code that you use for calling the plugin (html elements, js line).

Seems like there is some problem with how you have called the plugin, i.e. what Dom elements you are using for filling with content etc.

naveedrafi commented 11 years ago

http://jsfiddle.net/uaZzL/

kindly view it on fiddle

i have included jquery.esn.autobrowse.js but not caching js. Thanks for your support.

msjolund commented 11 years ago

jQuery and autobowse was not added in the fiddle linked to. But I see the problem.

Your "url" function does not return a url for the plugin to use. It acutally makes it's own ajax request. The "url" argument should be a string url, or a function returning a string url.

naveedrafi commented 11 years ago

can you please more elaborate it or provide a sample code with ajax call to web service just like i did. Thanks.

msjolund commented 11 years ago

I think it would be possible for you to just return the url in the url function, and use the postData option (see the source code) to set your post data, and use POST.

SamJoan commented 11 years ago

Hey I get:

divToBeWorkedOn is not defined when trying to run your code, and it loops indefinitely. Might be because it's getting a 404

POST http://fiddle.jshell.net/_display/Services/ClientUserServices.asmx/LoadClientUserReviews 404 (NOT FOUND) jquery-1.8.1.min.js:2 XHR finished loading: "http://fiddle.jshell.net/_display/Services/ClientUserServices.asmx/LoadClientUserReviews". jquery-1.8.1.min.js:2 Uncaught ReferenceError: divToBeWorkedOn is not defined

SamJoan commented 11 years ago

hey @naveedrafi hows everything going?

btevfik commented 11 years ago

hi. this is kind of an old thread but i am trying to do the same thing. and i can't find much information anywhere else. i have an asp.net webservice that returns json. all of the examples i found on the web has .ajax call to the service itself. so i am not sure how to use the plugin to work with this service.