<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: jQuery Twitter API plugin</title> <atom:link href="http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/feed/" rel="self" type="application/rss+xml" /><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/</link> <description>Stephane Roucheray's trivial work and thoughts</description> <lastBuildDate>Sun, 25 Jul 2010 19:13:55 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>By: Stéphane Roucheray</title><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/comment-page-1/#comment-74</link> <dc:creator>Stéphane Roucheray</dc:creator> <pubDate>Wed, 09 Sep 2009 19:20:26 +0000</pubDate> <guid
isPermaLink="false">http://sroucheray.org/blog/?p=186#comment-74</guid> <description>I&#039;m not aware of any limitations of this kind.</description> <content:encoded><![CDATA[<p>I&#8217;m not aware of any limitations of this kind.</p> ]]></content:encoded> </item> <item><title>By: humoresko</title><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/comment-page-1/#comment-73</link> <dc:creator>humoresko</dc:creator> <pubDate>Wed, 09 Sep 2009 16:17:35 +0000</pubDate> <guid
isPermaLink="false">http://sroucheray.org/blog/?p=186#comment-73</guid> <description>Can we use Twitter for educational activities?</description> <content:encoded><![CDATA[<p>Can we use Twitter for educational activities?</p> ]]></content:encoded> </item> <item><title>By: Karl Böhlmark</title><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/comment-page-1/#comment-35</link> <dc:creator>Karl Böhlmark</dc:creator> <pubDate>Mon, 27 Jul 2009 14:02:53 +0000</pubDate> <guid
isPermaLink="false">http://sroucheray.org/blog/?p=186#comment-35</guid> <description>You&#039;re right about the initialization, it&#039;s perfectly correct as it stands.
The thing is, I tried the test-method from the usage example: $.twitter.test(printSuccess);
and it didn&#039;t work, so I had a look at the code, made the two changes, and then it worked. I think the problem was when you do $.each(options,.. and options is undefined. (Which it is in the usage example) jQuery then tries to do options.length and you have a problem.I just put in an if(options)... and then it worked.I&#039;m still not testing this to verify what I&#039;m saying here, but I&#039;m pretty sure I&#039;m right :-)</description> <content:encoded><![CDATA[<p>You&#8217;re right about the initialization, it&#8217;s perfectly correct as it stands.<br
/> The thing is, I tried the test-method from the usage example: $.twitter.test(printSuccess);<br
/> and it didn&#8217;t work, so I had a look at the code, made the two changes, and then it worked. I think the problem was when you do $.each(options,.. and options is undefined. (Which it is in the usage example) jQuery then tries to do options.length and you have a problem.</p><p>I just put in an if(options)&#8230; and then it worked.</p><p>I&#8217;m still not testing this to verify what I&#8217;m saying here, but I&#8217;m pretty sure I&#8217;m right <img
src='http://sroucheray.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Stéphane Roucheray</title><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/comment-page-1/#comment-34</link> <dc:creator>Stéphane Roucheray</dc:creator> <pubDate>Fri, 24 Jul 2009 17:28:08 +0000</pubDate> <guid
isPermaLink="false">http://sroucheray.org/blog/?p=186#comment-34</guid> <description>@Karl It&#039;s great if it helps. The coma should really be a coma on line 146, it&#039;s a simple initialization of two variables using one var statement :&lt;code  lang=&quot;javascript&quot;&gt;var a = [], b = {};&lt;/code&gt;If the coma is replaced by a semicolon b becomes a global variable.Could you take time to tell me what problem you noticed in line 151 ?</description> <content:encoded><![CDATA[<p>@Karl It&#8217;s great if it helps. The coma should really be a coma on line 146, it&#8217;s a simple initialization of two variables using one var statement :</p><div
class="codecolorer-container javascript dawn" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div
class="javascript codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span
style="color: #003366; font-weight: bold;">var</span> a <span
style="color: #339933;">=</span> <span
style="color: #009900;">&#91;</span><span
style="color: #009900;">&#93;</span><span
style="color: #339933;">,</span> b <span
style="color: #339933;">=</span> <span
style="color: #009900;">&#123;</span><span
style="color: #009900;">&#125;</span><span
style="color: #339933;">;</span></div></div><p>If the coma is replaced by a semicolon b becomes a global variable.</p><p>Could you take time to tell me what problem you noticed in line 151 ?</p> ]]></content:encoded> </item> <item><title>By: Karl Böhlmark</title><link>http://sroucheray.org/blog/2009/07/jquery-twitter-api-plugin/comment-page-1/#comment-32</link> <dc:creator>Karl Böhlmark</dc:creator> <pubDate>Thu, 23 Jul 2009 19:00:53 +0000</pubDate> <guid
isPermaLink="false">http://sroucheray.org/blog/?p=186#comment-32</guid> <description>Thanks a lot for the plugin, it&#039;s just what I needed :-).However I had to fix it a little bit to make it work. There seems to be a comma instead of a semi-colon on line 146. And also on line 151 there is a problem if the options parameter isn&#039;t set.Just wanted to let you know. Thanks again!</description> <content:encoded><![CDATA[<p>Thanks a lot for the plugin, it&#8217;s just what I needed <img
src='http://sroucheray.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p><p>However I had to fix it a little bit to make it work. There seems to be a comma instead of a semi-colon on line 146. And also on line 151 there is a problem if the options parameter isn&#8217;t set.</p><p>Just wanted to let you know. Thanks again!</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 16/27 queries in 0.050 seconds using disk

Served from: sroucheray.org @ 2010-07-31 15:00:15 -->