<?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>Awkward Group - Digital Production Agency</title>
	<atom:link href="http://www.awkwardgroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.awkwardgroup.com</link>
	<description>Awkward is a Digital Production Agency</description>
	<lastBuildDate>Mon, 20 Feb 2012 15:01:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>South Park in the Parliament</title>
		<link>http://www.awkwardgroup.com/case/south-park-in-the-parliament/</link>
		<comments>http://www.awkwardgroup.com/case/south-park-in-the-parliament/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 15:01:59 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Case]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2527</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/35000801?title=0&amp;byline=0&amp;portrait=0" width="960" height="540" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/case/south-park-in-the-parliament/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sveriges osvenskaste fest</title>
		<link>http://www.awkwardgroup.com/work/sveriges-osvenskaste-fest/</link>
		<comments>http://www.awkwardgroup.com/work/sveriges-osvenskaste-fest/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 12:13:19 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2464</guid>
		<description><![CDATA[A promotion campaign for tropical fruit juice in Sweden, called “Sweden’s most un-Swedish party”. Del Monte challenged Swedes to arrange parties with attractive themes. You gathered guests by sharing a party invite on Facebook. Every visit to your party’s webpage was generated from a unique link to prevent cheating. The happy person gathering most guests to their party won SEK 10 000.]]></description>
			<content:encoded><![CDATA[<p>A promotion campaign for tropical fruit juice in Sweden, called “Sweden’s most un-Swedish party”. Del Monte challenged Swedes to arrange parties with attractive themes. You gathered guests by sharing a party invite on Facebook. Every visit to your party’s webpage was generated from a unique link to prevent cheating.</p>
<p>The happy person gathering most guests to their party won SEK 10 000.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/sveriges-osvenskaste-fest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awkward Check &#8211; A jQuery Plugin</title>
		<link>http://www.awkwardgroup.com/sandbox/awkward-check-a-jquery-plugin/</link>
		<comments>http://www.awkwardgroup.com/sandbox/awkward-check-a-jquery-plugin/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 11:44:52 +0000</pubDate>
		<dc:creator>Joakim Strandell</dc:creator>
				<category><![CDATA[Sandbox]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2401</guid>
		<description><![CDATA[Awkward Check is an easy to implement jQuery plugin that makes it super easy to implement validation of HTML-forms. It has many useful features. One is <em>real-time validation</em>, which means that a field is validated as soon as it's loses focus. Another one is <em>custom validation rules</em> which opens up for ajax based validations.

The look of the validation is 100% customizable via HTML and CSS.

<a href="http://www.awkwardgroup.com/download/?download=check.1.3.1" class="nice-button-2 grid-button">Download v.1.3.1</a><a href="http://check.awkwardgroup.com" target="_blank"  class="nice-button grid-button">View Demo</a>
<div class="clear"></div>]]></description>
			<content:encoded><![CDATA[<h2>Implementation Example</h2>
<pre class="brush: php; gutter: true; html-script: true; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Awkward Check - Demo #1&lt;/title&gt;
&lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot; /&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;jquery.aw-check.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;jQuery( document ).ready(function() { aw_check_init('#form'); });&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;form id=&quot;form&quot; method=&quot;post&quot;&gt;
	&lt;div class=&quot;input-box&quot; checkfield=&quot;#input-name&quot; checkrule=&quot;text&quot;&gt;
		&lt;label&gt;Name&lt;/label&gt;
		&lt;input type=&quot;text&quot; id=&quot;input-name&quot; name=&quot;input-name&quot; /&gt;
		&lt;span class=&quot;check&quot;&gt;&lt;/span&gt;
		&lt;span class=&quot;error&quot;&gt;&lt;/span&gt;
	&lt;/div&gt;
	&lt;div class=&quot;input-box&quot; checkfield=&quot;#input-email&quot; checkrule=&quot;email&quot; checkerror=&quot;Please enter a valid e-mail address&quot;&gt;
		&lt;label&gt;E-mail&lt;/label&gt;
		&lt;input type=&quot;text&quot; id=&quot;input-email&quot; name=&quot;input-email&quot; /&gt;
		&lt;span class=&quot;check&quot;&gt;&lt;/span&gt;
		&lt;span class=&quot;error&quot;&gt;&lt;/span&gt;
	&lt;/div&gt;
	&lt;div class=&quot;input-box&quot; checkfield=&quot;#input-phone&quot; checkrule=&quot;phone:empty&quot; checkerror=&quot;Please enter a valid phone number&quot;&gt;
		&lt;label&gt;Phone&lt;/label&gt;
		&lt;input type=&quot;text&quot; id=&quot;input-phone&quot; name=&quot;input-phone&quot; /&gt;
		&lt;span class=&quot;check&quot;&gt;&lt;/span&gt;
		&lt;span class=&quot;error&quot;&gt;&lt;/span&gt;
	&lt;/div&gt;
	&lt;div class=&quot;input-box&quot;&gt;
		&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit form&quot; onclick=&quot;javascript: return aw_check('#form');&quot; /&gt;
	&lt;/div&gt;
&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<h2>Configuration Options</h2>
<h3>Functions</h3>
<div class="c10 collapse">
<p><strong>aw_check_init( identifier, auto )</strong><br />
Run this, in the jQuery-document-ready-function, to initialize the form validation. The function takes two parameters:</p>
<p><em>identifier</em> (string) Identifier of the form to validate.<br/><em>auto</em> (bool) Activate real-time validation.</p>
</div>
<div class="c10 p4">
<p><strong>aw_check(&#8216;#id-of-the-form-to-validate&#8217;)</strong><br />
Run this when clicking the submit button. If the form do not validate the function returns the value false.</p>
</div>
<div class="clear">&nbsp;</div>
<h3>Element Attributes</h3>
<div class="c10 collapse">
<p><strong>class</strong><br />
The class &#8221;input-box&#8221; MUST be included.</p>
<p><strong>checkfield</strong><br />
The identifier of the field to validate.</p>
<p><strong>checkerror</strong> (optional)<br />
The error message to show.</p>
</div>
<div class="c10 p4">
<p><strong>checkrule</strong><br />
The validation rule for the field.<br />
<em>text</em>, <em>email</em>, <em>check</em>, <em>phone</em>, <em>number</em> and custom rules</p>
<p>Add :empty if it&#8217;s an optional field that you want validated.</p>
<p><strong>checklabel</strong><br />
The value for the overlay label.</p>
</div>
<div class="clear">&nbsp;</div>
<h3>Custom Validation Rules</h3>
<p>Add custom validation rules (checkrule) by adding regular expressions or functions to the array named <em>aw_check_custom_validation</em>.</p>
<pre class="brush: php; gutter: true; html-script: true; title: ; notranslate">
aw_check_custom_validation['time'] = /^([0-1][0-9]|[2][0-3]):([0-5][0-9])$/;
</pre>
<div class="c16 collapse sandbox-bugs">
<h2>Known Bugs in v.1.3.1</h2>
<p>No known bugs yet =)</p>
<p>If you find any bugs, or solutions on how to solve them, keep us updated. Thanks!</p>
<h3>Changelog v.1.3.1</h3>
<p>- A small bug fix for custom validation functions.</p>
<h2>Upcoming Features</h2>
<p>If you have any features you want in upcoming versions, let us know.</p>
</div>
<div class="c5 p1 sandbox-change">
<h2>Changelogs</h2>
<p><a href="http://plugins.jquery.com/project/awkward-check" target="_blank">Visit our jQuery Plugin Page</a></p>
<h2>3 latest releases</h2>
<p><a href="http://www.awkwardgroup.com/download/?download=check.1.3.1">Awkward Check v.1.3.1</a><br />
<a href="http://www.awkwardgroup.com/download/?download=check.1.3">Awkward Check v.1.3</a><br />
<a href="http://www.awkwardgroup.com/download/?download=check.1.2">Awkward Check v.1.2</a></p>
</div>
<div class="clear">&nbsp;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/sandbox/awkward-check-a-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>H&amp;M Fashion Media Update</title>
		<link>http://www.awkwardgroup.com/work/hm-fashion-media-update/</link>
		<comments>http://www.awkwardgroup.com/work/hm-fashion-media-update/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 08:34:22 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2376</guid>
		<description><![CDATA[H&#038;M Fashion Media Update is a News Magazine and press release all-in-one system. It allows the H&#038;M people to create content for the News Magazine, and at the same time send that content as press releases all over the world (38 different languages).]]></description>
			<content:encoded><![CDATA[<p>H&#038;M Fashion Media Update is a News Magazine and press release all-in-one system. It allows the H&#038;M people to create content for the News Magazine, and at the same time send that content as press releases all over the world (38 different languages).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/hm-fashion-media-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Akta musen</title>
		<link>http://www.awkwardgroup.com/work/akta-musen/</link>
		<comments>http://www.awkwardgroup.com/work/akta-musen/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 08:33:45 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2380</guid>
		<description><![CDATA[As a part of “Akta musen”, we ran a promotion for three weeks on Facebook. Besides pushing people to order free samples, we encouraged people to engage and take care of a real live mouse via 24/7 live streaming cameras.]]></description>
			<content:encoded><![CDATA[<p>As a part of “Akta musen”, we ran a promotion for three weeks on Facebook. Besides pushing people to order free samples, we encouraged people to engage and take care of a real live mouse via 24/7 live streaming cameras.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/akta-musen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Del Monte</title>
		<link>http://www.awkwardgroup.com/work/del-monte/</link>
		<comments>http://www.awkwardgroup.com/work/del-monte/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 10:53:16 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2280</guid>
		<description><![CDATA[Del Monte is one of the world&#8217;s leading producers of canned fruit, juices and fruit drinks, and a well-known brand in Sweden. Like many other companies, they wanted to renew their website. Our mission for this project was to highlight the Del Monte brand and boost the link between their products and the recipes on the website.]]></description>
			<content:encoded><![CDATA[<p>Del Monte is one of the world&#8217;s leading producers of canned fruit, juices and fruit drinks, and a well-known brand in Sweden. Like many other companies, they wanted to renew their website.</p>
<p>Our mission for this project was to highlight the Del Monte brand and boost the link between their products and the recipes on the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/del-monte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PAN Vision</title>
		<link>http://www.awkwardgroup.com/work/pan-vision/</link>
		<comments>http://www.awkwardgroup.com/work/pan-vision/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 10:19:28 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2268</guid>
		<description><![CDATA[PAN Vision is the leading distributor and publisher of interactive home entertainment in northern Europe. Through new studies, it was shown that end consumers were a big part the old website&#8217;s visitors. Our challenge was to please different kinds of target groups: companies and end consumers, and also to make the website experience fun and easy to navigate.]]></description>
			<content:encoded><![CDATA[<p>PAN Vision is the leading distributor and publisher of interactive home entertainment in northern Europe.</p>
<p>Through new studies, it was shown that end consumers were a big part the old website&#8217;s visitors.</p>
<p>Our challenge was to please different kinds of target groups: companies and end consumers, and also to make the website experience fun and easy to navigate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/pan-vision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lanvin for H&amp;M</title>
		<link>http://www.awkwardgroup.com/work/lanvin-for-hm/</link>
		<comments>http://www.awkwardgroup.com/work/lanvin-for-hm/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 09:50:52 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkward.se/?p=1780</guid>
		<description><![CDATA[Artistic Director Alber Elbaz of Lanvin created unique haute couture looks from the Lanvin for H&#038;M 2010 winter collection. The looks were revealed at a fashion show in New York and were then auctioned off exclusively at the site. All proceeds from the auction was donated to the H&#038;M UNICEF All for Children project.]]></description>
			<content:encoded><![CDATA[<p>Artistic Director Alber Elbaz of Lanvin created unique haute couture looks from the Lanvin for H&#038;M 2010 winter collection.</p>
<p>The looks were revealed at a fashion show in New York and were then auctioned off exclusively at the site.</p>
<p>All proceeds from the auction was donated to the H&#038;M UNICEF All for Children project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/lanvin-for-hm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Christmas Tale by Sony Ericsson</title>
		<link>http://www.awkwardgroup.com/work/a-christmas-tale-by-sony-ericsson/</link>
		<comments>http://www.awkwardgroup.com/work/a-christmas-tale-by-sony-ericsson/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 14:52:49 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkwardgroup.com/?p=2086</guid>
		<description><![CDATA[The mission for this project: Is it possible to make an e-mail invitation for a Christmas Party more fun and make it stand out from all the others cluttering your inbox. By letting our guests RSVP to the party a fun and irregular way, we gave them a chance to contribute to the content of the site and have a sneak peek of who&#8217;s coming.]]></description>
			<content:encoded><![CDATA[<p>The mission for this project: Is it possible to make an e-mail invitation for a Christmas Party more fun and make it stand out from all the others cluttering your inbox. </p>
<p>By letting our guests RSVP to the party a fun and irregular way, we gave them a chance to contribute to the content of the site and have a sneak peek of who&#8217;s coming.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/a-christmas-tale-by-sony-ericsson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Art Here By H&amp;M</title>
		<link>http://www.awkwardgroup.com/work/your-art-here-by-hm/</link>
		<comments>http://www.awkwardgroup.com/work/your-art-here-by-hm/#comments</comments>
		<pubDate>Sat, 09 Apr 2011 15:19:02 +0000</pubDate>
		<dc:creator>Dennis Phang</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.awkward.se/?p=1581</guid>
		<description><![CDATA[The world is filled with talented artists. Recognizing that talent is becoming increasingly difficult. That is why H&#038;M now introduces ‘Your Art Here’ – an all styles visual arts contest, with a New York City theme. Our mission was to develop a campaign site where aspiring artists could publish their artwork and compete for the grand prize of exhibiting their work in H&#038;Ms new Flag Ship Store on 5th Avenue in New York.]]></description>
			<content:encoded><![CDATA[<p>The world is filled with talented artists. Recognizing that talent is becoming increasingly difficult. That is why H&#038;M now introduces ‘Your Art Here’ – an all styles visual arts contest, with a New York City theme.</p>
<p>Our mission was to develop a campaign site where aspiring artists could publish their artwork and compete for the grand prize of exhibiting their work in H&#038;Ms new Flag Ship Store on 5th Avenue in New York.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.awkwardgroup.com/work/your-art-here-by-hm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

