<?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>Full On Design &#187; Usability</title>
	<atom:link href="http://www.fullondesign.co.uk/tag/usability/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fullondesign.co.uk</link>
	<description>Design &#38; Web Technologies</description>
	<lastBuildDate>Sun, 30 Oct 2011 21:37:16 +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>Creating More User Friendly Forms with jQuery</title>
		<link>http://www.fullondesign.co.uk/coding/javascript-coding/1202-creating-more-user-friendly-forms-with-jquery.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/javascript-coding/1202-creating-more-user-friendly-forms-with-jquery.htm#comments</comments>
		<pubDate>Fri, 11 Sep 2009 22:34:43 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[user friendly]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1202</guid>
		<description><![CDATA[Create forms on a web page is relatively simple, however what most developers forget is the golden rule of usability, &#8220;Users are Idiots&#8221;.  In a large number of websites they fail to provide a clear indication of how a form field needs to be formatted. Some even seem to even forget to clear the field [...]]]></description>
			<content:encoded><![CDATA[<p>Create forms on a web page is relatively simple, however what most developers forget is the golden rule of usability, &#8220;Users are Idiots&#8221;.  In a large number of websites they fail to provide a clear indication of how a form field needs to be formatted. Some even seem to even forget to clear the field when the user clicks into, which is really useful if your website has users with motor skills.</p>
<p>Here is a really neat piece of jQuery I use to make forms a little easier for users which takes little work to integrate (Just copy and paste before the </body> tag).</p>
<p><span id="more-1202"></span></p>
<pre class="brush: xml; title: ; notranslate">&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;!-- Pull the jQuery base from Google, it has CDN so it should be a little faster. --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  $(document).ready(function() {
    $(&quot;form input, form input, form textarea&quot;).css('color', '#484848');
	$(&quot;form .submit&quot;).css('color', '#000');
	$(&quot;form label&quot;).hover(function () {
		$(&quot;#infobox&quot;).html($(this).attr('title'));
	});
	$(&quot;form input, form input, form textarea&quot;).focus(function () {
		if($(this).val() == $(this).attr('title')){
			$(this).val('');
		}
		$(this).css('color', '#000');
	});
	$(&quot;form input, form input, form textarea&quot;).blur(function () {
		if($(this).val() == ''){
			$(this).val($(this).attr('title'));
			$(this).css('color', '#484848');
		}
	});
  });
&lt;/script&gt;</pre>
<p>It takes the title of the field and places it into the value, then clears the value when the user clicks into it. It also takes the value of the label and places it into an information box, which can help explain what a user needs to do.</p>
<p><a href="http://www.fullondesign.co.uk/examples/Creating_More_User_Friendly_Forms_with_jQuery/Creating_More_User_Friendly_Forms_with_jQuery.html">Here is an example</a> of the script in action. Feel free to copy, change and share it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/javascript-coding/1202-creating-more-user-friendly-forms-with-jquery.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 easy ways to improve the usability of your website</title>
		<link>http://www.fullondesign.co.uk/design/usability/272-5-easy-ways-to-improve-the-usability-of-your-website.htm</link>
		<comments>http://www.fullondesign.co.uk/design/usability/272-5-easy-ways-to-improve-the-usability-of-your-website.htm#comments</comments>
		<pubDate>Fri, 13 Mar 2009 16:54:59 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[solutions]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=272</guid>
		<description><![CDATA[Users are simple folk who are easily confused, as a designer or developer its core to our job to make our websites as easy to understand and use as possible. Here are 5 easy ways to improve the usability of your site. Be Consistent Having a similar layout across your website helps with user familiarisation, [...]]]></description>
			<content:encoded><![CDATA[<p>Users are simple folk who are easily confused, as a designer or developer its core to our job to make our websites as easy to understand and use as possible. Here are 5 easy ways to improve the usability of your site.</p>
<h3>Be Consistent</h3>
<p>Having a similar layout across your website helps with user familiarisation, if the layout drastically changes the user will tend to assume they are on another website (users really are that silly, hence phishing scams doing so well).</p>
<p>An example of where most websites fail to be consistent is in add-on packages such as Blogs and Forums. In a recent survey by Full On Design a very high percentage of websites which used a readymade blog (WordPress etc) or forum (PHPBB, MyBB etc) did not have a consistent layout.</p>
<h3>Don&#8217;t send mixed/complex messages</h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-477" title="247_support_offline_small" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/03/247_support_offline_small.png" alt="247_support_offline_small" width="296" height="99" /><em>24/7 support which is offline, this could confuse users.</em></p>
<p>As mentioned above, users get confused easily and a confused user is an unhappy user. Putting an excessive amount of information on a single page on a poorly constructed page can make a user think &#8220;this is not worth my time&#8221; and they will leave.</p>
<p>To fix this, quite simple check how your website reads with a 3rd party and condense your data into as few words as possible (but don&#8217;t lose the original message). Really good examples of websites which &#8220;get to the point&#8221; quickly are <a href="http://www.facebook.com/">Facebook</a> and <a href="http://www.apple.com/">Apple</a>. Examples of websites which epically fail to get to the point are <a href="http://www.ibm.com/us/en/">IBM</a> and <a href="http://www.bebo.com/">Bebo</a>.</p>
<h3>Check for errors</h3>
<p>Having a big &#8220;Error: The code is rubbish&#8221; is a big &#8220;hack me, I&#8217;m an idiot&#8221; sign essentially. Make sure your website works the way you intend to before you release the code (This includes cross browser testing). Luckily most server side code has error suppression and client side coding has lots of cheat sheets.</p>
<p>If you are adjusting a large website with a large amount of PHP, consider looking into PHP&#8217;s built in <a href="http://uk.php.net/errorfunc">Error Handling</a>.</p>
<h3>Breadcrumbs</h3>
<p style="text-align: center;"><strong>Home page &gt; Section page &gt; Subsection page</strong><br />
 <em>Above is an example of breadcrumbs</em></p>
<p><a href="http://kennethdreyer.com/usability-tips-1-breadcrumbs/">Breadcrumbs</a> are an easy way to tell users where they are, where they came from and in some cases where they are going. If you use WordPress there is a really nice <a href="http://mtekk.weblogs.us/code/breadcrumb-navxt/">plug-in</a> to create breadcrumbs for you.</p>
<h3>Be Clear</h3>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-482" title="breadcrumbs_1" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/03/breadcrumbs_1.png" alt="breadcrumbs_1" width="375" height="47" /><em><a href="http://www.ebuyer.com/">eBuyer</a> is very clear about how many steps are left when purchasing stuff.</em></p>
<p>Remove as much clutter as you can and make sure that your website is easily read. Keep in mind; on the web it&#8217;s better to have less useful information than more useless information.</p>
<h3>Useful Links</h3>
<p><a href="http://www.doshdosh.com/50-web-usability-tips/">50 Web Usability Tips that Help You Attract and Retain Visitors to Your Website</a><br />
 <a href="http://www.amazon.co.uk/gp/product/0321344758?ie=UTF8&amp;tag=fulondes-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0321344758">Don&#8217;t Make Me Think!: A Common Sense Approach to Web Usability</a><br />
 <a href="http://www.smashingmagazine.com/2009/02/18/9-common-usability-blunders/">9 Common Usability Mistakes In Web Design </a><br />
 <a href="http://www.smashingmagazine.com/2009/03/17/breadcrumbs-in-web-design-examples-and-best-practices-2/">Breadcrumbs In Web Design: Examples And Best Practices</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/design/usability/272-5-easy-ways-to-improve-the-usability-of-your-website.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How many characters per a page is normal?</title>
		<link>http://www.fullondesign.co.uk/design/usability/285-how-many-characters-per-a-page-is-normal.htm</link>
		<comments>http://www.fullondesign.co.uk/design/usability/285-how-many-characters-per-a-page-is-normal.htm#comments</comments>
		<pubDate>Sat, 21 Feb 2009 20:42:10 +0000</pubDate>
		<dc:creator>Rogem</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[analyses]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[paragraph]]></category>
		<category><![CDATA[words]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=285</guid>
		<description><![CDATA[As the title suggests, in this brief study I&#8217;m going to try and find out how many words, paragraphs and characters is normal for a web page. Below is an overview of the results I obtained from a bot I wrote  (Which analyses web page content*): Words Per a page Characters Per a Page Paragraphs [...]]]></description>
			<content:encoded><![CDATA[<p>As the title suggests, in this brief study I&#8217;m going to try and find out how many words, paragraphs and characters is normal for a web page.</p>
<p>Below is an overview of the results I obtained from a bot I wrote  (Which analyses web page content*):</p>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="18%"><!-- I hate wordpress sometimes --></td>
<td width="17%"><strong>Words Per a page</strong></td>
<td width="17%"><strong>Characters Per a Page</strong></td>
<td width="9%"><strong>Paragraphs</strong></td>
<td width="16%"><strong>Characters per a Word</strong></td>
<td width="16%"><strong>Words Per a paragraph</strong></td>
</tr>
<tr>
<td><strong>BBC News &#8211; #1</strong></td>
<td>402.00</td>
<td>2,000.00</td>
<td>10.00</td>
<td>4.98</td>
<td>200.00</td>
</tr>
<tr>
<td><strong>BBC News &#8211; #2</strong></td>
<td>764.00</td>
<td>3,476.00</td>
<td>17.00</td>
<td>4.55</td>
<td>204.47</td>
</tr>
<tr>
<td><strong>BBC News &#8211; #3</strong></td>
<td>663.00</td>
<td>3,359.00</td>
<td>34.00</td>
<td>5.07</td>
<td>98.79</td>
</tr>
<tr>
<td><strong>LA Times &#8211; #1</strong></td>
<td>943.00</td>
<td>4,904.00</td>
<td>30.00</td>
<td>5.20</td>
<td>163.47</td>
</tr>
<tr>
<td><strong>LA Times &#8211; #2</strong></td>
<td>1,045.00</td>
<td>5,163.00</td>
<td>20.00</td>
<td>4.94</td>
<td>258.15</td>
</tr>
<tr>
<td><strong>Yahoo News &#8211; #1</strong></td>
<td>524.00</td>
<td>2,565.00</td>
<td>15.00</td>
<td>4.90</td>
<td>171.00</td>
</tr>
<tr>
<td><strong>Breitbart.com &#8211; #1</strong></td>
<td>319.00</td>
<td>1,576.00</td>
<td>11.00</td>
<td>4.94</td>
<td>143.27</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Average (News Sites)</strong></td>
<td>665.71</td>
<td>3,291.86</td>
<td>19.57</td>
<td>4.94</td>
<td>177.02</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Mashable &#8211; #1</strong></td>
<td>222.00</td>
<td>1,083.00</td>
<td>4.00</td>
<td>4.88</td>
<td>270.75</td>
</tr>
<tr>
<td><strong>Mashable &#8211; #2</strong></td>
<td>710.00</td>
<td>3,703.00</td>
<td>9.00</td>
<td>5.22</td>
<td>411.44</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Average (Blog)</strong></td>
<td>466.00</td>
<td>2,393.00</td>
<td>6.50</td>
<td>5.05</td>
<td>341.10</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Wikipedia &#8211; #1</strong></td>
<td>5,241.00</td>
<td>28,681.00</td>
<td>45.00</td>
<td>5.47</td>
<td>637.36</td>
</tr>
<tr>
<td><strong>Wikipedia &#8211; #2</strong></td>
<td>2,757.00</td>
<td>14,415.00</td>
<td>34.00</td>
<td>5.23</td>
<td>423.97</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Average (Information)</strong></td>
<td>3,999.00</td>
<td>21,548.00</td>
<td>39.50</td>
<td>5.35</td>
<td>530.66</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>WMT Post &#8211; #1</strong></td>
<td>85.00</td>
<td>342.00</td>
<td>1.00</td>
<td>4.02</td>
<td>342.00</td>
</tr>
<tr>
<td><strong>WMT Post &#8211; #2</strong></td>
<td>472.00</td>
<td>2,240.00</td>
<td>6.00</td>
<td>4.75</td>
<td>373.33</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Average (Forum)</strong></td>
<td>278.50</td>
<td>1,291.00</td>
<td>3.50</td>
<td>4.38</td>
<td>357.67</td>
</tr>
<tr>
<td colspan="6">&nbsp;</td>
</tr>
<tr>
<td><strong>Average (Overall)</strong></td>
<td>1,204.86</td>
<td>6,296.24</td>
<td>18.85</td>
<td>4.97</td>
<td>296.67</td>
</tr>
</table>
<p>So overall, the average number of words per a page is about 1,200 and the number of letters per a word should average out to roughly 5. However, this number various depending on the web page type and target audience.</p>
<p><span style="font-size: x-small;">*The content analysed excludes navgation, headers and footers.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/design/usability/285-how-many-characters-per-a-page-is-normal.htm/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 disk: basic
Database Caching 1/21 queries in 0.012 seconds using disk: basic
Object Caching 292/345 objects using disk: basic

Served from: www.fullondesign.co.uk @ 2012-02-04 08:42:27 -->
