<?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: How to: Update Status ala Facebook menggunakan jQuery</title> <atom:link href="http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/feed/" rel="self" type="application/rss+xml" /><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/</link> <description>Merging Mental Realm of Code and Visual World of Graphic</description> <lastBuildDate>Wed, 28 Jul 2010 06:39:20 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: freelynx</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-188</link> <dc:creator>freelynx</dc:creator> <pubDate>Wed, 28 Jul 2010 06:39:20 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-188</guid> <description>&lt;a href=&quot;#comment-178&quot; rel=&quot;nofollow&quot;&gt;@ayu&lt;/a&gt;, kalau masih berminat dengan full source codenya bisa didownload &lt;a href=&quot;http://codeindesign.com/wp-content/uploads/facebook-live-feed.zip&quot; rel=&quot;nofollow&quot;&gt;disini&lt;/a&gt;.Happy coding..</description> <content:encoded><![CDATA[<p><a
href="#comment-178" rel="nofollow">@ayu</a>, kalau masih berminat dengan full source codenya bisa didownload <a
href="http://codeindesign.com/wp-content/uploads/facebook-live-feed.zip" rel="nofollow">disini</a>.</p><p>Happy coding..</p> ]]></content:encoded> </item> <item><title>By: freelynx</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-187</link> <dc:creator>freelynx</dc:creator> <pubDate>Wed, 28 Jul 2010 06:35:16 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-187</guid> <description>&lt;a href=&quot;#comment-186&quot; rel=&quot;nofollow&quot;&gt;@ades&lt;/a&gt;, ternyata ada mixed up antara kode untuk tutorial dengan untuk demonya. So sorry for this. But Thanx banget udah secara gak langsung ngingetin untuk ngecek lagi. Tulisan ini udah diupdate, dan kalau mau langsung coba di box sendiri bisa didownload &lt;a href=&quot;http://codeindesign.com/wp-content/uploads/facebook-live-feed.zip&quot; rel=&quot;nofollow&quot;&gt;disini&lt;/a&gt;.Thanx again!</description> <content:encoded><![CDATA[<p><a
href="#comment-186" rel="nofollow">@ades</a>, ternyata ada mixed up antara kode untuk tutorial dengan untuk demonya. So sorry for this. But Thanx banget udah secara gak langsung ngingetin untuk ngecek lagi. Tulisan ini udah diupdate, dan kalau mau langsung coba di box sendiri bisa didownload <a
href="http://codeindesign.com/wp-content/uploads/facebook-live-feed.zip" rel="nofollow">disini</a>.</p><p>Thanx again!</p> ]]></content:encoded> </item> <item><title>By: ades</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-186</link> <dc:creator>ades</dc:creator> <pubDate>Fri, 23 Jul 2010 20:52:24 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-186</guid> <description>boz...kok saya ga bisa tampil di Last Feed pas saya klik update
gmn yah code lengkap nya
saya gabunginnya kyk gini:var interactiveUpdate = function(id,update) {
var idparam = &#039;.&#039;+ id + &#039; ul li:first-child&#039;;// insert new list onto the first child of ul and hide it
$(idparam).before(&#039;&#039;+update+&#039;&#039;);// display the hidden first child using jQuery&#039;s effect slideDown()
$(idparam).slideDown(&quot;slow&quot;);
}$(function(){updateStatus();});var updateStatus = function() {
// Set the event if the button is clicked
$(&#039;input[name=&quot;update&quot;]&#039;).click(function() {// grab the status
var stat = $(&#039;textarea[name=&quot;status&quot;]&#039;).text();// call the interactiveUpdate snippet
interactiveUpdate(&#039;the-feed&#039;,stat);
});
}
Last Feed
.example-the-feed-1422 ul li { list-style:none; padding: 5px; border-bottom: 1px solid grey; height: 25px; }
.example-the-feed-1422 ul li:first-child { background-color:#F6D2E3;}tapi tetep ga bs jalan tuh boz
mohon bantuannya biar saya mengerti boz
thanks</description> <content:encoded><![CDATA[<p>boz&#8230;kok saya ga bisa tampil di Last Feed pas saya klik update<br
/> gmn yah code lengkap nya<br
/> saya gabunginnya kyk gini:</p><p>var interactiveUpdate = function(id,update) {<br
/> var idparam = &#8216;.&#8217;+ id + &#8216; ul li:first-child&#8217;;</p><p> // insert new list onto the first child of ul and hide it<br
/> $(idparam).before(&#8221;+update+&#8221;);</p><p> // display the hidden first child using jQuery&#8217;s effect slideDown()<br
/> $(idparam).slideDown(&#8220;slow&#8221;);<br
/> }</p><p>$(function(){updateStatus();});</p><p>var updateStatus = function() {<br
/> // Set the event if the button is clicked<br
/> $(&#8216;input[name="update"]&#8216;).click(function() {</p><p> // grab the status<br
/> var stat = $(&#8216;textarea[name="status"]&#8216;).text();</p><p> // call the interactiveUpdate snippet<br
/> interactiveUpdate(&#8216;the-feed&#8217;,stat);<br
/> });<br
/> }</p><p>Last Feed</p><p>.example-the-feed-1422 ul li { list-style:none; padding: 5px; border-bottom: 1px solid grey; height: 25px; }<br
/> .example-the-feed-1422 ul li:first-child { background-color:#F6D2E3;}</p><p>tapi tetep ga bs jalan tuh boz<br
/> mohon bantuannya biar saya mengerti boz<br
/> thanks</p> ]]></content:encoded> </item> <item><title>By: freelynx</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-185</link> <dc:creator>freelynx</dc:creator> <pubDate>Fri, 16 Jul 2010 15:41:52 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-185</guid> <description>&lt;a href=&quot;#comment-175&quot; rel=&quot;nofollow&quot;&gt;@thea&lt;/a&gt;, Makasih udah mampir n baca2 artikelnya... Sedang diusahakan untuk bisa nulis2 lagi. Doakan kami!! Chayo! :-)</description> <content:encoded><![CDATA[<p><a
href="#comment-175" rel="nofollow">@thea</a>, Makasih udah mampir n baca2 artikelnya&#8230; Sedang diusahakan untuk bisa nulis2 lagi. Doakan kami!! Chayo! :-)</p> ]]></content:encoded> </item> <item><title>By: freelynx</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-184</link> <dc:creator>freelynx</dc:creator> <pubDate>Fri, 16 Jul 2010 15:38:41 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-184</guid> <description>&lt;a href=&quot;#comment-178&quot; rel=&quot;nofollow&quot;&gt;@ayu&lt;/a&gt;, hmm..  tidak jalannya pas dimananya ya? pas di coba di step nomor 5 itu jalan gak? soalnya udah dites di beberapa browser baik2 aja. boleh tau web browser apa yang dipakai mbak ayu?.. sama-sama...</description> <content:encoded><![CDATA[<p><a
href="#comment-178" rel="nofollow">@ayu</a>, hmm..  tidak jalannya pas dimananya ya? pas di coba di step nomor 5 itu jalan gak? soalnya udah dites di beberapa browser baik2 aja. boleh tau web browser apa yang dipakai mbak ayu?.. sama-sama&#8230;</p> ]]></content:encoded> </item> <item><title>By: Alfan Nasrulloh</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-179</link> <dc:creator>Alfan Nasrulloh</dc:creator> <pubDate>Mon, 05 Jul 2010 13:51:23 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-179</guid> <description>wuihh...
mantab mas... keren lah.</description> <content:encoded><![CDATA[<p>wuihh&#8230;<br
/> mantab mas&#8230; keren lah.</p> ]]></content:encoded> </item> <item><title>By: ayu</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-178</link> <dc:creator>ayu</dc:creator> <pubDate>Wed, 30 Jun 2010 08:12:20 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-178</guid> <description>bisa minta full source nya tidak? soalnya saya cba java scriptnya tdak jalan,,,trima kasih,,</description> <content:encoded><![CDATA[<p>bisa minta full source nya tidak? soalnya saya cba java scriptnya tdak jalan,,,trima kasih,,</p> ]]></content:encoded> </item> <item><title>By: RarashaPMH</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-176</link> <dc:creator>RarashaPMH</dc:creator> <pubDate>Tue, 22 Jun 2010 06:10:31 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-176</guid> <description>luhar bihasa.................sering&quot; bikin artikel about programming mas&quot;</description> <content:encoded><![CDATA[<p>luhar bihasa&#8230;&#8230;&#8230;&#8230;&#8230;..sering&#8221; bikin artikel about programming mas&#8221;</p> ]]></content:encoded> </item> <item><title>By: thea</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-175</link> <dc:creator>thea</dc:creator> <pubDate>Wed, 09 Jun 2010 15:34:12 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-175</guid> <description>artikelnya seru2.. eueyayo tulis yg laennya.. ^_^</description> <content:encoded><![CDATA[<p>artikelnya seru2.. euey</p><p>ayo tulis yg laennya.. ^_^</p> ]]></content:encoded> </item> <item><title>By: yudiacro</title><link>http://codeindesign.com/id/how-to-update-status-ala-facebook-using-jquery/comment-page-1/#comment-168</link> <dc:creator>yudiacro</dc:creator> <pubDate>Tue, 30 Mar 2010 07:22:40 +0000</pubDate> <guid
isPermaLink="false">http://codeindesign.com/id/?p=517#comment-168</guid> <description>&lt;a href=&quot;#comment-166&quot; rel=&quot;nofollow&quot;&gt;@Hitori&lt;/a&gt;, iya nanti menyusul databasenya gan. Masih belum sempat update artikel lagi :)</description> <content:encoded><![CDATA[<p><a
href="#comment-166" rel="nofollow">@Hitori</a>, iya nanti menyusul databasenya gan. Masih belum sempat update artikel lagi :)</p> ]]></content:encoded> </item> </channel> </rss><!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk
Database Caching 0/39 queries in 0.035 seconds using memcached

Served from: v100.web1.byetcluster.com @ 2010-07-30 20:32:37 -->