<?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>Element Design &#187; google</title>
	<atom:link href="http://elementdesignllc.com/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://elementdesignllc.com</link>
	<description></description>
	<lastBuildDate>Mon, 02 Apr 2012 19:16:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>jQuery Validation submitHandler fails silently in Chrome</title>
		<link>http://elementdesignllc.com/2010/10/jquery-validation-submithandler-fails-silently-in-chrome/</link>
		<comments>http://elementdesignllc.com/2010/10/jquery-validation-submithandler-fails-silently-in-chrome/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 18:18:39 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=624</guid>
		<description><![CDATA[There is an odd issue with the jQuery Validation plugin&#8217;s submitHandler callback with Chrome. To validate the form I had my function setup as follows: The alert box and form submitted correctly in Firefox. However in Chrome, the alert box worked, but after that the form refused to submit. I narrowed down the issue to [...]]]></description>
			<content:encoded><![CDATA[<p>There is an odd issue with the jQuery Validation plugin&#8217;s submitHandler callback with Chrome. To validate the form I had my function setup as follows:</p>
<pre class="brush: jscript; title: ; notranslate">
$(&quot;#signup_form&quot;).validate({
   submitHandler: function(form) {
      alert(&quot;Test&quot;);
      form.submit();
   }
});
</pre>
<p>The alert box and form submitted correctly in Firefox. However in Chrome, the alert box worked, but after that the form refused to submit. I narrowed down the issue to be with the actual name of the submit input on the form. I had named the submit input &#8220;submit&#8221;, which had some sort of conflict with the plugin. Renaming the submit input to anything else, like &#8220;newname&#8221; fixes the issue.</p>
<p>In short, to fix this, change:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Sign Up&quot; /&gt;
</pre>
<p>to</p>
<pre class="brush: xml; title: ; notranslate">
&lt;input type=&quot;submit&quot; name=&quot;newname&quot; value=&quot;Sign Up&quot; /&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2010/10/jquery-validation-submithandler-fails-silently-in-chrome/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Will Desktops be Irrelevant in 3 years?</title>
		<link>http://elementdesignllc.com/2010/03/will-desktops-be-irrelevant-in-3-years/</link>
		<comments>http://elementdesignllc.com/2010/03/will-desktops-be-irrelevant-in-3-years/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 15:58:53 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[personal projector]]></category>
		<category><![CDATA[sixth sense]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=506</guid>
		<description><![CDATA[At a recent conference, European Director of Google&#8217;s online sales John Herlihy stated that in 3 years time, desktops will become irrelevant. The statement is not as farfetched as it sounds, in Japan that is already the case, where the only uses for desktops are in actual work environments, the vast majority of all other [...]]]></description>
			<content:encoded><![CDATA[<p>At a recent conference, European Director of Google&#8217;s online sales John Herlihy stated that in 3 years time, <a href="http://news.yahoo.com/s/pcworld/20100303/tc_pcworld/googleeuropeexecdesktoppcsirrelevantinthreeyears" target="_blank">desktops will become irrelevant</a>. The statement is not as farfetched as it sounds, in Japan that is already the case, where the only uses for desktops are in actual work environments, the vast majority of all other internet browsing is done on mobile devices.</p>
<p>With more data being moved to cloud services such as <a href="http://aws.amazon.com/s3/" target="_blank">Amazon S3</a>, the need for large hard drives for storage is becoming obsolete as well, being replaced by the convenience of accessing your data from anywhere on any device. Ever lose critical data or pictures from a hard drive failure? Cloud Services are built to prevent that from ever happening.</p>
<p>Concerned about the small screen size of your mobile device and the cramped keyboard? Try out the up-and-coming <a href="http://www.personalprojector.co.uk/" target="_blank">personal projectors</a> along with the <a href="http://news.cnet.com/8301-17938_105-10159601-1.html" target="_blank">Sixth Sense Interface</a>. Turn whatever surface/wall/table into your own 50&#8243; monitor then control it by moving your hands and fingers in the air. It&#8217;s only a matter of time before mobile devices come with those features standard.</p>
<p>So will Desktops be irrelevant in 3 years? I&#8217;d say at least 5. It&#8217;s crucial to have those personal projectors and the Sixth Sense Interface perfected before that will ever happen. As soon as that does, I will happily replace my Desktop/Laptop with a single device that fits in my pocket.</p>
<p><em>Note: At this point in time I consider laptops to be the same as desktops, as majority of people who own laptops keep them in the same location, or never leave the house with them.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2010/03/will-desktops-be-irrelevant-in-3-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Phones predicted to outsell iPhones by year&#8217;s end</title>
		<link>http://elementdesignllc.com/2010/02/android-phones-predicted-to-outsell-iphones-by-years-end/</link>
		<comments>http://elementdesignllc.com/2010/02/android-phones-predicted-to-outsell-iphones-by-years-end/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 20:51:09 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=493</guid>
		<description><![CDATA[In the planning stages for your next killer-iPhone app? You might want to rethink the platform. There are currently 60,000 Android phones being pushed out every day, says Google&#8217;s CEO Eric Schmidt. That comes out to over 21 million phones a year, a number that may help Android overtake the iPhone by the end of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://elementdesignllc.com/wp-content/uploads/2010/02/android.gif"><img class="alignright size-full wp-image-495" style="margin: 15px;" title="android" src="http://elementdesignllc.com/wp-content/uploads/2010/02/android.gif" alt="" width="200" height="200" /></a>In the planning stages for your next killer-iPhone app?</p>
<p>You might want to rethink the platform.</p>
<p>There are currently 60,000 Android phones being pushed out <strong>every day</strong>, says Google&#8217;s CEO Eric Schmidt. That comes out to over 21 million phones a year, a number that may help Android overtake the iPhone by the end of the year. While the numbers currently favor the iPhone, planning for the future will in all cases point to developing for Android.</p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2010/02/android-phones-predicted-to-outsell-iphones-by-years-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embed Google Calendar on your website</title>
		<link>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/</link>
		<comments>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:58:23 +0000</pubDate>
		<dc:creator>chad</dc:creator>
				<category><![CDATA[Quick Tips]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://elementdesignllc.com/?p=411</guid>
		<description><![CDATA[Embedding Google Calendar onto your website is a great way to quickly setup an attractive and interactive events calendar. Watch this video on how to do it:]]></description>
			<content:encoded><![CDATA[<p>Embedding Google Calendar onto your website is a great way to quickly setup an attractive and interactive events calendar. Watch this video on how to do it:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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/2tnYwbs-yDk&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/2tnYwbs-yDk&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://elementdesignllc.com/2009/11/embed-google-calendar-on-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 13/16 queries in 0.008 seconds using memcached

Served from: elementdesignllc.com @ 2012-05-18 17:07:19 -->
