<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nite Viva Developer&#039;s Blog &#187; twitter</title>
	<atom:link href="http://blog.niteviva.com/tag/twitter/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.niteviva.com</link>
	<description>Documenting the development of NiteViva</description>
	<lastBuildDate>Tue, 22 Jun 2010 12:53:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Realtime Twitter Reactions using JQuery</title>
		<link>http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery</link>
		<comments>http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery#comments</comments>
		<pubDate>Fri, 27 Nov 2009 14:34:19 +0000</pubDate>
		<dc:creator>chico</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.niteviva.com/?p=10</guid>
		<description><![CDATA[
$(document).ready(function() {
	$("#demo-realtime-reactions").getPageRealtimeReactions({
		query: "niteviva OR Realtime Twitter Reactions using JQuery OR http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery OR http://tinyurl.com/yfahkgd OR http://bit.ly/4HUbdf  OR http://bit.ly/7QB1PQ",
		numTweets: 5,
		loaderText: "Loading ...",
		slideIn: true,
		showHeading: false
	});
});


I&#8217;ve taken inspiration from an awesome jquery plugin from coda and developed some jquery code that goes and fetches realtime twitter reactions.
To begin, download the source and include the following scripts in your [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">
$(document).ready(function() {
	$("#demo-realtime-reactions").getPageRealtimeReactions({
		query: "niteviva OR Realtime Twitter Reactions using JQuery OR http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery OR http://tinyurl.com/yfahkgd OR http://bit.ly/4HUbdf  OR http://bit.ly/7QB1PQ",
		numTweets: 5,
		loaderText: "Loading ...",
		slideIn: true,
		showHeading: false
	});
});
</script></p>
<div id="demo-realtime-reactions" style="width:95%;"></div>
<p>I&#8217;ve taken inspiration from <a href="http://coda.co.za/blog/2008/10/26/jquery-plugin-for-twitter" target="_blank">an awesome jquery plugin from coda</a> and developed some jquery code that goes and fetches realtime twitter reactions.<span id="more-10"></span></p>
<p>To begin, download the <a href="http://blog.niteviva.com/wp-content/themes/niteviva/source/jquery-realtime-twitter-reactions-source.zip">source</a> and include the following scripts in your page:</p>
<pre name="code" class="html:nogutter">
&lt;script type="text/javascript" src="js/jquery-1.3.2.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="js/jquery.page-realtime-twitter-reactions.js"&gt;&lt;/script&gt;
</pre>
<p>Next, add a &#8220;page-realtime-reactions&#8221; div element to your page, wherever you want the realtime reactions to appear:</p>
<pre name="code" class="html:nogutter">&lt;div id="page-realtime-reactions"&gt;&lt;/div&gt;</pre>
<p>Finally, add the following jquery code, changing the query parameter to suit your needs:</p>
<pre name="code" class="html:nogutter">
&lt;script type="text/javascript"&gt;
&nbsp;&nbsp;$(document).ready(function() {
&nbsp;&nbsp;&nbsp;&nbsp;$("#page-realtime-reactions").getPageRealtimeReactions({
&nbsp;&nbsp;&nbsp;&nbsp;query: "Realtime Twitter Reactions using JQuery OR http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery OR http://tinyurl.com/yfahkgd",
&nbsp;&nbsp;&nbsp;&nbsp;numTweets: 5,
&nbsp;&nbsp;&nbsp;&nbsp;loaderText: "Loading ...",
&nbsp;&nbsp;&nbsp;&nbsp;slideIn: true,
&nbsp;&nbsp;&nbsp;&nbsp;showHeading: false
&nbsp;&nbsp;&nbsp;&nbsp;});
&nbsp;&nbsp;});
&lt;/script&gt;
</pre>
<p>Hope you enjoy playing with this neat little plugin, and why not <a href="http://twitter.com/home?status=realtime twitter reactions using jquery http://tinyurl.com/yfahkgd" target="_blank">tweet about it</a> (comments are so 1990!), and be amazed when you see your tweet appear above <img src='http://blog.niteviva.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.niteviva.com/development/realtime-twitter-reactions-using-jquery/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

