<?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>Digital Success online marketing and web blog &#187; Scripts</title>
	<atom:link href="http://www.digitalsuccess.co.uk/category/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalsuccess.co.uk</link>
	<description>Online marketing and Web thoughts blog</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:09:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript fade background images using jquery</title>
		<link>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/</link>
		<comments>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 16:35:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=215</guid>
		<description><![CDATA[After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it. This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way ]]></description>
			<content:encoded><![CDATA[<p>After looking everywhere including jqueryetc for a way to do an image swap that fades, but using the background images, I figured out a rough way to do it.</p>
<p>This is not a fully tested and final way of doing background image fading sequence but thought I would put it out as a potential way to do it. Hopefully it helps somebody looking for it.</p>
<p>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style&gt;<br />
#test1, #test2, #test3 { height:200px; background-position:center; background-repeat:no-repeat;width:100%; position:absolute; }<br />
#test1 {<br />
background-image:url(&#8216;img/img1.jpg&#8217;);<br />
}<br />
#test2 {<br />
background-image:url(&#8216;img/img2.jpg&#8217;);<br />
display:none;<br />
}<br />
#test3 {<br />
background-image:url(&#8216;img/img3.jpg&#8217;);<br />
display:none;<br />
}<br />
&lt;/style&gt;<br />
&lt;script src=&#8221;http://code.jquery.com/jquery-latest.min.js&#8221;&gt;&lt;/script&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;script&gt;<br />
var $i = 1;<br />
var auto_refresh = setInterval(<br />
function ()<br />
{<br />
if($i==4) {<br />
$(&#8220;#test3&#8243;).fadeOut(1000);<br />
$(&#8220;#test2&#8243;).fadeOut(1000);<br />
$i=1;<br />
} else {<br />
$(&#8220;#test&#8221;+$i).fadeIn(1000);<br />
$i=$i+1;<br />
}<br />
}, 3000);</p>
<p>&lt;/script&gt;</p>
<p>&lt;div id=&#8221;test1&#8243;&gt;&amp;nbsp;&lt;/div&gt;<br />
&lt;div id=&#8221;test2&#8243;&gt;&amp;nbsp;&lt;/div&gt;<br />
&lt;div id=&#8221;test3&#8243;&gt;&amp;nbsp;&lt;/div&gt;</p>
<p>&lt;/body&gt;<br />
&lt;/html&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/scripts/javascript-fade-background-images-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating Filezilla from v2 to v3</title>
		<link>http://www.digitalsuccess.co.uk/scripts/updating-filezilla-from-v2-to-v3/</link>
		<comments>http://www.digitalsuccess.co.uk/scripts/updating-filezilla-from-v2-to-v3/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 10:01:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.digitalsuccess.co.uk/?p=74</guid>
		<description><![CDATA[I updated Filezilla to the new version, and found a script that enables you to easily transfer the site settings to the new v3 program. If you have to do this then use the converter script that is linked below. http://nyrodev.free.fr/filezilla/convert.php]]></description>
			<content:encoded><![CDATA[<p>I updated Filezilla to the new version, and found a script that enables you to easily transfer the site settings to the new v3 program.</p>
<p>If you have to do this then use the converter script that is linked below.</p>
<p><a href="http://nyrodev.free.fr/filezilla/convert.php">http://nyrodev.free.fr/filezilla/convert.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsuccess.co.uk/scripts/updating-filezilla-from-v2-to-v3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

