<?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>linein designs &#187; jquery</title>
	<atom:link href="http://www.linein.org/blog/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linein.org/blog</link>
	<description></description>
	<lastBuildDate>Tue, 28 Jun 2011 17:27:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Rotate Images with jQuery and PHP</title>
		<link>http://www.linein.org/blog/2010/11/29/rotate-images-with-jquery-and-php/</link>
		<comments>http://www.linein.org/blog/2010/11/29/rotate-images-with-jquery-and-php/#comments</comments>
		<pubDate>Mon, 29 Nov 2010 22:10:11 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=828</guid>
		<description><![CDATA[Things you&#8217;ll need: PHP jQuery jQueryRotate plugin DEMO &#124; DOWNLOAD PROJECT We&#8217;ll first setup the control div since it should help make things clearer starting here. We have the two rotate buttons (clockwise and anit-clockwise) and the save button to save our final rotated image. We also have an input box that will store the [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2010/11/29/rotate-images-with-jquery-and-php/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fade in and Out the Most Recent Pictures in a Directory with jQuery</title>
		<link>http://www.linein.org/blog/2010/10/22/fade-in-and-out-the-most-recent-pictures-in-a-directory-with-jquery/</link>
		<comments>http://www.linein.org/blog/2010/10/22/fade-in-and-out-the-most-recent-pictures-in-a-directory-with-jquery/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 14:09:35 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[how-to]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=814</guid>
		<description><![CDATA[Dave in Michigan contacted me and wanted to know if it was possible to take the script used from this previous post and only display the last X number of pictures uploaded to a directory. Something to note before you get started though. The script will read the entire directory so if you have a [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2010/10/22/fade-in-and-out-the-most-recent-pictures-in-a-directory-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery AJAX Loading &#8211; Display Images or Text Until Script is Finished (Part 2)</title>
		<link>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/</link>
		<comments>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/#comments</comments>
		<pubDate>Wed, 12 May 2010 19:10:47 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=733</guid>
		<description><![CDATA[This is a more practical way to display an image or text while an AJAX request is loading. DEMO &#124; DOWNLOAD FILES What we&#8217;re basically doing is forcing a DIV to have a starting image and then replacing it with the text return from the AJAX request. function loadingAjax(div_id) { $("#"+div_id).html(' saving...'); $.ajax({ type: "POST", [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2010/05/12/jquery-ajax-loading-display-images-or-text-until-script-is-finished-part-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>jQuery Loading &#8211; Display Images or Text Until Script is Finished</title>
		<link>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/</link>
		<comments>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 20:25:50 +0000</pubDate>
		<dc:creator>john</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.linein.org/blog/?p=339</guid>
		<description><![CDATA[I&#8217;m just finishing up a little project to improve the search ability on a website and I want to display an image and message say &#8220;loading&#8230;&#8221; until the script finished running. Below is an easy way to do that. UPDATE: Please view the updated way to do this that is a little more practical in [...]]]></description>
		<wfw:commentRss>http://www.linein.org/blog/2008/11/13/jquery-display-images-text-until-script-is-finished/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 12/20 queries in 0.012 seconds using disk: basic

Served from: www.linein.org @ 2012-02-09 07:36:40 -->
