<?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>cssgallery.info &#187; Ajax</title>
	<atom:link href="http://cssgallery.info/category/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://cssgallery.info</link>
	<description>Resources for web developers</description>
	<lastBuildDate>Sun, 11 Jul 2010 16:19:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Mootools &#8216;ajax&#8217; request for local files</title>
		<link>http://cssgallery.info/mootools-ajax-request-for-local-files/</link>
		<comments>http://cssgallery.info/mootools-ajax-request-for-local-files/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 18:40:27 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[local file request]]></category>
		<category><![CDATA[xmlhttprequest]]></category>

		<guid isPermaLink="false">http://cssgallery.info/mootools-ajax-request-for-local-files/</guid>
		<description><![CDATA[Mootools 'ajax' request for local files or how to make ajax requests to a local file without the need of a web server.]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fmootools-ajax-request-for-local-files%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fmootools-ajax-request-for-local-files%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Ok, ok, I know it&#8217;s a contradiction in terms, but this is a problem encountered by a lot of newbies, and sometimes a feature like this would be useful to be able to copy the whole js into a local folder, and run it form here, without being forced to start a web server on the local machine.</p>
<p>How can this be accomplished without too much hassle or code change?</p>
<p>I created a function that tests the protocol used by the browser, and decides how to load the requested file, with <strong>xmlhttprequest</strong> or <strong>iframe</strong>.</p>
<p>Please be warned that this is just an exercise, and not a final solution. It can be improved and it should be <img src='http://cssgallery.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The example is <a href="http://cssgallery.info/wp-content/local_ajax_request.html">here</a>.<br />
Obviously this will use the xmlhttprequest, but if you download <a href="http://cssgallery.info/wp-content/local_ajax_request.zip">this zip</a>, and unzip it in a local folder, you will see working the iframe method.</p>
<p>The code is below:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">	<span style="color: #003366; font-weight: bold;">function</span> get_content<span style="color: #009900;">&#40;</span>url<span style="color: #339933;">,</span>update<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
					<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> document.<span style="color: #660066;">location</span>.<span style="color: #660066;">protocol</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">&quot;file:&quot;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
						<span style="color: #006600; font-style: italic;">// console.log('local');</span>
						<span style="color: #003366; font-weight: bold;">var</span> ifr <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> IFrame<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
							src<span style="color: #339933;">:</span>url<span style="color: #339933;">,</span>
							events<span style="color: #339933;">:</span><span style="color: #009900;">&#123;</span>
								load<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
									$<span style="color: #009900;">&#40;</span>update<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">set</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'html'</span><span style="color: #339933;">,</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">contentWindow</span>.<span style="color: #660066;">document</span>.<span style="color: #660066;">body</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
								<span style="color: #009900;">&#125;</span>
							<span style="color: #009900;">&#125;</span>
						<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">inject</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">body</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #009900;">&#125;</span>
					<span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
						<span style="color: #006600; font-style: italic;">// console.log('server');</span>
						<span style="color: #003366; font-weight: bold;">var</span> myHTMLRequest <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Request.<span style="color: #660066;">HTML</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
							update<span style="color: #339933;">:</span>update<span style="color: #339933;">,</span>
						<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">get</span><span style="color: #009900;">&#40;</span>url<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Let me know your thoughts.</p>
<blockquote>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files&amp;description=Mootools%20%27ajax%27%20request%20for%20local%20files%20or%20how%20to%20make%20ajax%20requests%20to%20a%20local%20file%20without%20the%20need%20of%20a%20web%20server." rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/mootools-ajax-request-for-local-files/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;t=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;title=Mootools+%27ajax%27+request+for+local+files&amp;srcUrl=http://cssgallery.info/mootools-ajax-request-for-local-files/&amp;srcTitle=Mootools+%27ajax%27+request+for+local+files&amp;snippet=Mootools%20%27ajax%27%20request%20for%20local%20files%20or%20how%20to%20make%20ajax%20requests%20to%20a%20local%20file%20without%20the%20need%20of%20a%20web%20server." rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/mootools-ajax-request-for-local-files/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/mootools-ajax-request-for-local-files/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Kroppr &#8211; image cropping widget for your site</title>
		<link>http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/</link>
		<comments>http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 16:15:50 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development tools]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[image cropper]]></category>
		<category><![CDATA[image cropping script]]></category>
		<category><![CDATA[image resizer]]></category>
		<category><![CDATA[javascript image crop]]></category>
		<category><![CDATA[kroppr]]></category>
		<category><![CDATA[php image crop]]></category>
		<category><![CDATA[picture cropper]]></category>

		<guid isPermaLink="false">http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/</guid>
		<description><![CDATA[Kroppr is an unobtrusive script that willenhance any site that wants to offer an image cropping tool for its visitors. Unlike other scripts, Kroppr is able to ROTATE, zoom and move the image in the real time without using plugins &#8211; flash or java. The actual picture crop is done after the user is satisfied [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fkroppr-image-cropping-widget-for-your-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fkroppr-image-cropping-widget-for-your-site%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a title="Kroppr image crop script" href="http://kroppr.rborn.info/" target="_blank">Kroppr</a> is an unobtrusive script that willenhance any site that wants to offer an image cropping tool for its visitors.</p>
<p>Unlike other scripts, <strong>Kroppr</strong> is able to <strong>ROTATE</strong>, <strong>zoom</strong> and <strong>move</strong> the image in the real time without using plugins &#8211; flash or java. The actual picture crop is done after the user is satisfied with his settings. In this way, the load put on the server is minimised and also the visitor&#8217;s experience.</p>
<p>The installation  is also very simple being enough to add a script tag in the header&#8217;s page and a class to the image that makes the cropping subject. More info on the <a title="Kroppr image crop script installation" href="http://kroppr.rborn.info/" target="_blank"><strong>Kroppr page</strong></a>.</p>
<p style="float: left;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="349" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PwhKOs1Ko6g&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="349" src="http://www.youtube.com/v/PwhKOs1Ko6g&amp;hl=en&amp;fs=1&amp;rel=0&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site&amp;description=Kroppr%20is%20an%20unobtrusive%20script%20that%20willenhance%20any%20site%20that%20wants%20to%20offer%20an%20image%20cropping%20tool%20for%20its%20visitors.%0D%0A%0D%0AUnlike%20other%20scripts%2C%20Kroppr%20is%20able%20to%20ROTATE%2C%20zoom%20and%20move%20the%20image%20in%20the%20real%20time%20without%20using%20plugins%20-%20flash%20or%20java.%20The%20actual%20picture%20crop%20is%20done%20after%20the%20user%20is%20" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;t=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;title=Kroppr+-+image+cropping+widget+for+your+site&amp;srcUrl=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/&amp;srcTitle=Kroppr+-+image+cropping+widget+for+your+site&amp;snippet=Kroppr%20is%20an%20unobtrusive%20script%20that%20willenhance%20any%20site%20that%20wants%20to%20offer%20an%20image%20cropping%20tool%20for%20its%20visitors.%0D%0A%0D%0AUnlike%20other%20scripts%2C%20Kroppr%20is%20able%20to%20ROTATE%2C%20zoom%20and%20move%20the%20image%20in%20the%20real%20time%20without%20using%20plugins%20-%20flash%20or%20java.%20The%20actual%20picture%20crop%20is%20done%20after%20the%20user%20is%20" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/kroppr-image-cropping-widget-for-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript carousels</title>
		<link>http://cssgallery.info/javascript-carousels/</link>
		<comments>http://cssgallery.info/javascript-carousels/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 00:07:19 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Carousel Component]]></category>
		<category><![CDATA[carousel scripts]]></category>
		<category><![CDATA[Carousel Slideshow]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[iCarousel]]></category>
		<category><![CDATA[javascript carousels]]></category>
		<category><![CDATA[jCarousel]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[Prototype Carousel w/ Scriptaculous]]></category>
		<category><![CDATA[ScrollShow]]></category>
		<category><![CDATA[Simple 3D Carousel using Mootools]]></category>
		<category><![CDATA[slideshow]]></category>

		<guid isPermaLink="false">http://cssgallery.info/javascript-carousels/</guid>
		<description><![CDATA[Javascript carousels are used to display some images or content in a often narrow space, allowing the webdesigner to show much info in a limited space. They add some functionality to page and in the same time some visual candy. Some of scripts that can help us to achieve this are presented below:  Carousel Component [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fjavascript-carousels%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fjavascript-carousels%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Javascript carousels are used to display some images or content  in a often narrow space, allowing the webdesigner to show much info in a limited space. They add some functionality to page and in the same time some visual candy.</p>
<p>Some of scripts that can help us to achieve this are presented below:</p>
<h2><a href="http://billwscott.com/carousel/" title=" Carousel Component" target="_blank"> Carousel Component</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/billwscott.png" alt="Carousel Component" height="259" width="479" /> </p>
<p>The script use YUI and has a nice list of features like vertical/horizontal mode, ajax fetch for content, animation control and works with most of  modern browsers</p>
<h2><a href="http://zendold.lojcomm.com.br/icarousel/" title="iCarousel" target="_blank">iCarousel</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/icarousel.png" alt="iCarousel" /> </p>
<p>The iCarousel script has as base mootools framework, and works in Ie, Firefox, Opera and Safari. We tested the script in Konqueror and it works fine too. It is pretty configurable, but require to tune the declaration of class for this (maybe a little hard for noobs).</p>
<h2><a href="http://www.dynamicdrive.com/dynamicindex14/carousel2.htm" title=" Carousel Slideshow" target="_blank"> Carousel Slideshow</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/dd.png" alt="Carousel Slideshow" /> </p>
<p>The script supports vertical and horizontal scrolling, optional linking, title attributes, configurable visible sides, and more. </p>
<h2><a href="http://www.andrewsellick.com/75/simple-3d-carousel-using-mootools" rel="bookmark" title="Permanent Link to "Simple 3D Carousel using Mootools"">Simple 3D Carousel using Mootools</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/3d.png" alt="Simple 3D Carousel using Mootools" height="259" width="472" /> </p>
<p>As the name says  it&#8217;s a simple 3d mimic carousel  based on Mootools.The site explains how to implement the script.</p>
<h2><a href="http://sorgalla.com/projects/jcarousel/" title="jCarousel" target="_blank">jCarousel</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/jcarousel.png" alt="jCarousel" /> </p>
<p>jCarousel is a <a href="http://jquery.com/">jQuery</a> plugin for controlling     a list of items in horizontal or vertical order. The items, which can be static     HTML content or loaded with (or without) AJAX, can be scrolled back and forth     (with or without animation).</p>
<h2><a href="http://miedlar.com/dev/carousel/" title=" Prototype Carousel w/ Scriptaculous (version 2)" target="_blank"> Prototype Carousel w/ Scriptaculous (version 2)</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/miedlar.png" alt="Prototype Carousel w/ Scriptaculous (version 2)" /> </p>
<p>This script  is a prototype based carousel that allows for n-item paging. It utilize the scriptaculous effects library for carousel paging/movement. Additionally, the items within the carousel are extracted from the HTML itself so that they can be indexed in search engines.</p>
<h2><a href="http://plugins.jquery.com/project/ScrollShow" title=" ScrollShow" target="_blank"> ScrollShow</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/03/jqplug.png" alt="ScrollShow" height="178" width="405" /> </p>
<p>ScrollShow is a very customizable slideshow, that relies on <a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html" class="external" target="_blank" rel="nofollow">jQuery.ScrollTo</a>, to slide(scroll) the items.</p>
<p>Let me know for other scripts is same category.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels&amp;description=Javascript%20carousels%20are%20used%20to%20display%20some%20images%20or%20content%20%20in%20a%20often%20narrow%20space%2C%20allowing%20the%20webdesigner%20to%20show%20much%20info%20in%20a%20limited%20space.%20They%20add%20some%20functionality%20to%20page%20and%20in%20the%20same%20time%20some%20visual%20candy.%0D%0A%0D%0ASome%20of%20scripts%20that%20can%20help%20us%20to%20achieve%20this%20are%20presented%20below" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/javascript-carousels/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/javascript-carousels/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/javascript-carousels/&amp;t=Javascript+carousels" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/javascript-carousels/&amp;title=Javascript+carousels&amp;srcUrl=http://cssgallery.info/javascript-carousels/&amp;srcTitle=Javascript+carousels&amp;snippet=Javascript%20carousels%20are%20used%20to%20display%20some%20images%20or%20content%20%20in%20a%20often%20narrow%20space%2C%20allowing%20the%20webdesigner%20to%20show%20much%20info%20in%20a%20limited%20space.%20They%20add%20some%20functionality%20to%20page%20and%20in%20the%20same%20time%20some%20visual%20candy.%0D%0A%0D%0ASome%20of%20scripts%20that%20can%20help%20us%20to%20achieve%20this%20are%20presented%20below" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/javascript-carousels/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/javascript-carousels/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ajax autosuggest or autocomplete</title>
		<link>http://cssgallery.info/ajax-autosuggest-or-autocomplete/</link>
		<comments>http://cssgallery.info/ajax-autosuggest-or-autocomplete/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 19:08:35 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[autocompleter]]></category>
		<category><![CDATA[autosuggest]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MooTools]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[TextboxList]]></category>

		<guid isPermaLink="false">http://cssgallery.info/ajax-autosuggest-or-autocomplete/</guid>
		<description><![CDATA[Javascript and ajax autosuggest or autocomplete resources.]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fajax-autosuggest-or-autocomplete%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fajax-autosuggest-or-autocomplete%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>When we need to enter data into an input form element, but need strict data (like in select) and the amount of possible data is too big  we can make use of an ajax autosuggest &#8211; or autocomplete &#8211; to guide the user. In this post I&#8217;ll try to present some solutions for this.</p>
<p><a href="http://web2ajax.fr/2008/02/03/facebook-like-jquery-and-autosuggest-search-engine/" rel="bookmark">FaceBook Like &#8211; jQuery and autosuggest Search Engine</a></p>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/web2ajax.png" alt="web2ajax" /></p>
<p>Features :<br />
- Autosuggest and ajax support<br />
- Support search plugins<br />
- Support cache<br />
- Cross Browser support ( IE &gt; 5.5, FireFox, Safari, Opera )<a href="http://devthought.com/textboxlist-meets-autocompletion/" rel="bookmark" title="TextboxList meets Autocompletion"></a></p>
<p><a href="http://devthought.com/textboxlist-meets-autocompletion/" rel="bookmark" title="TextboxList meets Autocompletion">TextboxList meets Autocompletion</a></p>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/devthoughts.png" alt="TextboxList meets Autocompletion" height="289" width="439" /></p>
<p>This one use  mootools-beta-1.2b1.js, and can be customized , like minimum  number of  chars that trigger autocompletion.Also it has a cache feature, so is very responsive.</p>
<p><a href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm" title=" jQuery Autocomplete Mod" target="_blank"> jQuery Autocomplete Mod</a></p>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/pengoworks.png" alt="jQuery Autocomplete Mod" height="270" width="468" /></p>
<p>As it names sais, requires jquery.</p>
<p>from the site</p>
<p>- Supports local data array (can now use w/out AJAX).<br />
- Limit dropdown to XX number of results (good for limiting the results to users)<br />
- Autofill pre-populates text box as you type<br />
- New findValue() method can be used to programmatically determine if the value in the box is a valid option. (Useful for verifying the text entered is an existing value option.)<br />
- Dropdown options now correctly re-position themselves on each display (which means they adjust for changing to the DOM)<br />
- Dropdown box defaults to the width of the input field its attached to (you can manually specify a larger width as well)<br />
- Better emulates Windows autocomplete boxes (for example: hitting delete and retyping the same box will now bring back the dropdown menu)</p>
<p><a href="http://webeaters.blogspot.com/2007/11/ajax-powered-autocomplete-for-prototype.html">AJAX &#8211; Powered AutoComplete (for Prototype.js)</a></p>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/webeaters.png" alt="AJAX - Powered AutoComplete (for Prototype.js)" /></p>
<p>Prototype based, seems to support xml, multicolums and more&#8230;</p>
<p><a href="http://digitarald.de/project/autocompleter/">Autocompleter</a></p>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/digitarald.png" alt="Autocompleter" /></p>
<p>A mootools solution,  unobtrusive and customisable, is able to load data from a json or xhtml source.</p>
<p>I am sure there are more resources of this type, so please if you know any, don&#8217;t hesitate to write me about. I will add in this list as soon as possible. Thank you.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete&amp;description=Javascript%20and%20ajax%20autosuggest%20or%20autocomplete%20resources." rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/ajax-autosuggest-or-autocomplete/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;t=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;title=ajax+autosuggest+or+autocomplete&amp;srcUrl=http://cssgallery.info/ajax-autosuggest-or-autocomplete/&amp;srcTitle=ajax+autosuggest+or+autocomplete&amp;snippet=Javascript%20and%20ajax%20autosuggest%20or%20autocomplete%20resources." rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/ajax-autosuggest-or-autocomplete/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/ajax-autosuggest-or-autocomplete/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS and Ajax rating scripts</title>
		<link>http://cssgallery.info/css-and-ajax-rating-scripts/</link>
		<comments>http://cssgallery.info/css-and-ajax-rating-scripts/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 23:46:43 +0000</pubDate>
		<dc:creator>Dan Tamas</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Ajax rating scripts]]></category>
		<category><![CDATA[Creating an AJAX Rating Widget]]></category>
		<category><![CDATA[CSS rating scripts]]></category>
		<category><![CDATA[CSS Star rating redux]]></category>
		<category><![CDATA[CSS: Star Rater Ajax Version]]></category>
		<category><![CDATA[jQuery Ajax rater plugin]]></category>
		<category><![CDATA[percentage based Star Rating]]></category>
		<category><![CDATA[percentage rating]]></category>
		<category><![CDATA[rate]]></category>
		<category><![CDATA[star rating]]></category>
		<category><![CDATA[Starbox]]></category>
		<category><![CDATA[stars]]></category>
		<category><![CDATA[Unobtrusive AJAX Star Rating Bar]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://cssgallery.info/css-and-ajax-rating-scripts/</guid>
		<description><![CDATA[We need rating scripts for different situations in our webpages. For example we want visitors to rate a wallpaper in a wallpapers site, or a product in a shopping cart. For this we can use one of the rating scripts presented below: Unobtrusive AJAX Star Rating Bar The guys from Masuga Design made this script [...]]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="tweetmeme_button" style="float: right; margin: 10px !important;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fcssgallery.info%2Fcss-and-ajax-rating-scripts%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fcssgallery.info%2Fcss-and-ajax-rating-scripts%2F&amp;source=dan_tamas&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>We need rating scripts for different situations in our webpages. For example we want visitors to rate a wallpaper in a wallpapers site, or a product in a shopping cart. For this we can use one of the rating scripts presented below:</p>
<h2><a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/" title="Unobtrusive AJAX Star Rating Bar" target="_blank">Unobtrusive AJAX Star Rating Bar</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/masuga.png" alt="Unobtrusive AJAX Star Rating Bar" height="315" width="458" /> </p>
<p>The guys from Masuga Design made this script unobtrusive, configurable( you can set number of stars)  and provided the backend too &#8211;  which use PHP and MySQL. The js part is based on prototype/scrptacolous.</p>
<h2><a href="http://www.progressive-coding.com/tutorial.php?id=6" title="Creating an AJAX Rating Widget" target="_blank">Creating an AJAX Rating Widget</a></h2>
<p>Sadly I did not find a demo for this. The article is more a tutorial that covers all clientside part, and also shows how to implement  the rating system using 4 major javascript frameworks ( dojo,mootools,prototype and jquery). For jQuery it has a download archive too. It is good if you want to make your own rating script  and don&#8217;t know where to start from.</p>
<h2><a href="http://komodomedia.com/blog/index.php/2007/01/20/css-star-rating-redux/" title="CSS Star rating redux " target="_blank">CSS Star rating redux</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/komodomedia.png" alt="CSS Star rating redux" /> </p>
<p>This is a CSS only solution. The ajax part or backend is not covered here. The technique is crossbrowser, permits multiple sizes (see demo on their site) and is linked to another two posts that teach you how to create this.</p>
<h2><a href="http://www.yvoschaap.com/index.php/weblog/css_star_rater_ajax_version/">CSS: Star Rater Ajax Version</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/yvoschaap.png" alt="CSS: Star Rater Ajax Version" height="200" width="476" /> </p>
<p>Author took previous presented solutions and added the JS and PHP part. As posted on site  &#8220;<strong>not a beginners tutorial &#8211; and just follow the steps</strong>&#8221;  is presented in 5 short clear steps.</p>
<h2><a href="http://www.nofunc.com/AJAX_Star_Rating/" title="percentage based Star Rating" target="_blank">percentage based Star Rating</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/nofunc.png" alt="percentage based Star Rating" height="243" width="494" /> </p>
<p>A minimal but complete rating system. This script i scapable to rate in percents, so you&#8217;ll have a more accuracy.To adapt  it to your design you will need to dig into code and make changes needed.The stars are one sprite image as background, with variable background position.</p>
<h2><a href="http://www.beauscott.com/2006/08/26/ajax-rating-stars/" rel="bookmark" title="Permanent Link to AJAX Rating Stars">AJAX Rating Stars</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/beauscott.png" alt="AJAX Rating Stars Demo" height="193" width="497" /> </p>
<p>Based on prototype,the raw demo of the script shows it&#8217;s capabilities , like locking the staring, callbacks,external set, bindings to form elements.</p>
<h2><a href="http://widgets.rabidlabs.net/ratings/v1.22/" title="Rabid Ratings v1.22" target="_blank">Rabid Ratings v1.22</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/rabid.png" alt="Rabid Ratings v1.22" /> </p>
<p>This script uses png with transparency,is animated, and has a &#8216;snap&#8217; configuration that allows you to set steps for rating. Is mootools based, and will send the rating to an url set when you create the instance of the rating class. It also provides a tutorial of theme skinning.</p>
<h2><a href="http://www.nickstakenburg.com/projects/starbox/" title="Starbox 0.3" target="_blank">Starbox 0.3</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/starbox.png" alt="Starbox 0.3" height="236" width="474" /> </p>
<p>&#8220;Starbox allows you to easily create all kinds of rating boxes using just one PNG image.&#8221; It uses prototype and for effects scriptaculous.</p>
<h2><a href="http://www.m3nt0r.de/devel/raterDemo/" title=" jQuery Ajax Rater Plugin" target="_blank"> jQuery Ajax Rater Plugin</a></h2>
<p><img src="http://cssgallery.info/wp-content/uploads/2008/02/rater.png" alt="jQuery Ajax Rater Plugin" /> </p>
<p>This can have variable number or sizes of stars &#8211; starting from 1 like gmail starring system. Is based on jquery.</p>
<p>Please let me know if you know other rating scripts/techniques.</p>
<div style="clear:both;">&nbsp;</div>

<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts&amp;description=We%20need%20rating%20scripts%20for%20different%20situations%20in%20our%20webpages.%20For%20example%20we%20want%20visitors%20to%20rate%20a%20wallpaper%20in%20a%20wallpapers%20site%2C%20or%20a%20product%20in%20a%20shopping%20cart.%20For%20this%20we%20can%20use%20one%20of%20the%20rating%20scripts%20presented%20below%3A%0D%0A%0D%0AUnobtrusive%20AJAX%20Star%20Rating%20Bar%0D%0A%20%0D%0A%0D%0AThe%20guys%20from%20Masuga%20Desig" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://cssgallery.info/css-and-ajax-rating-scripts/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;t=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;title=CSS+and+Ajax+rating+scripts&amp;srcUrl=http://cssgallery.info/css-and-ajax-rating-scripts/&amp;srcTitle=CSS+and+Ajax+rating+scripts&amp;snippet=We%20need%20rating%20scripts%20for%20different%20situations%20in%20our%20webpages.%20For%20example%20we%20want%20visitors%20to%20rate%20a%20wallpaper%20in%20a%20wallpapers%20site%2C%20or%20a%20product%20in%20a%20shopping%20cart.%20For%20this%20we%20can%20use%20one%20of%20the%20rating%20scripts%20presented%20below%3A%0D%0A%0D%0AUnobtrusive%20AJAX%20Star%20Rating%20Bar%0D%0A%20%0D%0A%0D%0AThe%20guys%20from%20Masuga%20Desig" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://cssgallery.info/css-and-ajax-rating-scripts/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://cssgallery.info/css-and-ajax-rating-scripts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
