<?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>Idea Cafe</title>
	<atom:link href="http://www.ideacafe.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ideacafe.co.uk</link>
	<description></description>
	<lastBuildDate>Wed, 30 Nov 2011 10:17:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress redirect to new page after download file has initiated</title>
		<link>http://www.ideacafe.co.uk/wordpress-redirect-to-new-page-after-download-file-has-initiated/</link>
		<comments>http://www.ideacafe.co.uk/wordpress-redirect-to-new-page-after-download-file-has-initiated/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 10:12:00 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://www.ideacafe.co.uk/?p=220</guid>
		<description><![CDATA[I came across this handy bit of code that will redirect a user on wordpress to a new page after a download has started. I just wanted to share this bit of code as I will no doubt be using this in the future for one of my many sites.]]></description>
			<content:encoded><![CDATA[<p>I came across this handy bit of code that will redirect a user on wordpress to a new page after a download has started. I just wanted to share this bit of code as I will no doubt be using this in the future for one of my many sites.</p>
<p>So the link to the file is actually a link to another page with a query string variable (in this case, the name of the download file without .zip on it.</p>
<p>i.e. http://www.premiumpixels.com/download/?file=menu</p>
<p>What you are seeing is the contents of /download &#8211; try without the ?file=menu on the end&#8230;.!</p>
<p>So the user clicks through to the next page (which could be anything of course &#8211; you could easily have some logic in there that detected the actual file being downloaded and change the contents of the page based on that) and then the script above fires off, reads the query string and downloads the file!</p>
<p><code>jQuery(function () {<br />
	// get the GET variables<br />
	var theme = getUrlVars();<br />
	var downloadLink = 'http://cdn.premiumpixels.com/uploads/' + theme['file'] + '.zip';<br />
	if(theme['file'])<br />
	{<br />
		 jQuery('#downloadLink').attr('href', downloadLink);<br />
		 delayedDownload();<br />
	}<br />
	function delayedDownload()<br />
	{<br />
		 timeoutID = window.setTimeout(downloadTheme, 1000);<br />
	}<br />
	function downloadTheme()<br />
	{<br />
	 	window.location.replace(downloadLink);<br />
		//window.open(downloadLink,'','menubar=1,location=1,toolbar=1,width=600,height=500');<br />
	}<br />
	// Read a page's GET URL variables and return them as an associative array.<br />
	function getUrlVars()<br />
	{<br />
		var vars = [], hash;<br />
		var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&#038;');<br />
		for(var i = 0; i < hashes.length; i++)<br />
		{<br />
			hash = hashes[i].split('=');<br />
			vars.push(hash[0]);<br />
			vars[hash[0]] = hash[1];<br />
		}<br />
		return vars;<br />
	}<br />
});<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideacafe.co.uk/wordpress-redirect-to-new-page-after-download-file-has-initiated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaguar CX-16 New release colour</title>
		<link>http://www.ideacafe.co.uk/jaguar-cx-16-new-release-colour/</link>
		<comments>http://www.ideacafe.co.uk/jaguar-cx-16-new-release-colour/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 16:28:10 +0000</pubDate>
		<dc:creator>Daniel</dc:creator>
				<category><![CDATA[Automotive]]></category>

		<guid isPermaLink="false">http://www.ideacafe.co.uk/?p=180</guid>
		<description><![CDATA[There has been numerous posts, images and speculation about Jags' new sporty two seater. we love the look and spec details about this but would have loved to see it in some more colours rather than the silver we have seen everywhere. It looks like Jag are trying to appeal to a younger audience with the CX-16 so we thought it would be exciting to try some other colours.  hope you like the flame red that we have chosen we will ad some more colours, angles and interior shots in good time.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/big_Jaguar_CX16_Concept_17.jpg"><img class="alignnone size-full wp-image-197" title="Jaguar CX16 Concept" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/big_Jaguar_CX16_Concept_171.jpg" alt="Jaguar CX16 Concept" width="620" height="335" /></a></p>
<p>There has been numerous posts, images and speculation about Jags&#8217; new sporty two seater. we love the look and spec details about this but would have loved to see it in some more colours rather than the silver we have seen everywhere. It looks like Jag are trying to appeal to a younger audience with the CX-16 so we thought it would be exciting to try some other colours.  hope you like the flame red that we have chosen we will ad some more colours, angles and interior shots in good time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideacafe.co.uk/jaguar-cx-16-new-release-colour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ultimate Daft Punk Helmet</title>
		<link>http://www.ideacafe.co.uk/ultimate-daft-punk-helmet/</link>
		<comments>http://www.ideacafe.co.uk/ultimate-daft-punk-helmet/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 16:47:31 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Fashion]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.ideacafe.co.uk/?p=4</guid>
		<description><![CDATA[We spotted this daft punk replica helmet made by the guys over at Volpin Props. We really want one!]]></description>
			<content:encoded><![CDATA[<p>We spotted this daft punk replica helmet made by the guys over at <a href="http://volpinprops.blogspot.com/" target="_blank">Volpin Props</a>. We really want one!</p>
<p><a href="http://www.youtube.com/watch?v=DxjmQfeYztA">www.youtube.com/watch?v=DxjmQfeYztA</a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460960_d17d5770a0_z.jpg"><img class="alignnone size-full wp-image-210" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460960_d17d5770a0_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157463076_4fe5bf4ca2_z.jpg"><img class="alignnone size-full wp-image-213" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157463076_4fe5bf4ca2_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157461820_43d90441be_z.jpg"><img class="alignnone size-full wp-image-212" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157461820_43d90441be_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157461220_86e2b8897a_z.jpg"><img class="alignnone size-full wp-image-211" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157461220_86e2b8897a_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460292_0f1967bdbe_z.jpg"><img class="alignnone size-full wp-image-209" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460292_0f1967bdbe_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460146_f70a2c4bc4_z.jpg"><img class="alignnone size-full wp-image-208" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6157460146_f70a2c4bc4_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156920363_6c5dc4f1bc_z.jpg"><img class="alignnone size-full wp-image-206" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156920363_6c5dc4f1bc_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156920211_5ef50d6a0b_z.jpg"><img class="alignnone size-full wp-image-205" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156920211_5ef50d6a0b_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156919629_c3e284a902_z.jpg"><img class="alignnone size-full wp-image-204" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156919629_c3e284a902_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156919159_38d0c50744_z.jpg"><img class="alignnone size-full wp-image-203" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156919159_38d0c50744_z.jpg" alt="" width="620" height="620" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156918175_59f3c89292_z.jpg"><img class="alignnone size-full wp-image-202" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156918175_59f3c89292_z.jpg" alt="" width="620" height="413" /></a></p>
<p><a href="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156917915_b7c0ffa31f_z.jpg"><img class="alignnone size-full wp-image-201" title="Daft Punk DeLorean Shoot" src="http://www.ideacafe.co.uk/wp-content/uploads/2011/09/6156917915_b7c0ffa31f_z.jpg" alt="" width="620" height="413" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ideacafe.co.uk/ultimate-daft-punk-helmet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

