<?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>Hall of Bright Carvings &#187; Wireframing</title>
	<atom:link href="http://www.hallofbrightcarvings.com/category/wireframing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hallofbrightcarvings.com</link>
	<description>Things that are shiny</description>
	<lastBuildDate>Wed, 31 Aug 2011 05:29:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding javascript to HTML wireframes</title>
		<link>http://www.hallofbrightcarvings.com/adding-javascript-to-html-wireframes/</link>
		<comments>http://www.hallofbrightcarvings.com/adding-javascript-to-html-wireframes/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 12:35:13 +0000</pubDate>
		<dc:creator>Steerpike</dc:creator>
				<category><![CDATA[Wireframing]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.hallofbrightcarvings.com/?p=30</guid>
		<description><![CDATA[Useful javascript snippets to help make html wireframes a bit more like an actual prototype than a wireframe.
The guys and Clearleft and New Bamboo developed a very nifty plugin called Polypage which can be grabbed here or here
and some interesting writeups on using it here and here
Talk on its use from the South by Southwest [...]]]></description>
			<content:encoded><![CDATA[<p>Useful javascript snippets to help make html wireframes a bit more like an actual prototype than a wireframe.</p>
<p>The guys and Clearleft and New Bamboo developed a very nifty plugin called Polypage which can be grabbed <a href="http://code.new-bamboo.co.uk/polypage/packages/pp-0-4.zip">here</a> or <a href="http://github.com/andykent/polypage/tree/master">here</a></p>
<p>and some interesting writeups on using it <a href="http://code.new-bamboo.co.uk/polypage/">here</a> and <a href="http://24ways.org/2008/easier-page-states-for-wireframes">here</a><br />
Talk on its use from the<a href="http://audio.sxsw.com/podcast/interactive/panels/2008/SXSW08.INT.20080309.WireframinginWeb2.0.mp3"> South by Southwest Conference</a></p>
<p>Simpler jQuery script I threw together to just show and hide components on a page, just set up the <code>key : value</code> pairs in <code>var config</code></p>
<pre><code>
$(document).ready(function() {
  revealer = function() {
    var config = {
      '#reveal' : '#match',
      '#related' : '.tabs'
    }
    var Attacher = function(key, val) {
      var jqKey = $(key);
      var jqVal = $(val);
      jqVal.hide();
      jqKey.bind("click", function(evt) {
        jqVal.toggle();
        return false;
      })
      return false;
    }
    for (var key in config) {
      attach = new Attacher(key, config[key]);
    }
  }
  reveal = new revealer();
});</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.hallofbrightcarvings.com/adding-javascript-to-html-wireframes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://audio.sxsw.com/podcast/interactive/panels/2008/SXSW08.INT.20080309.WireframinginWeb2.0.mp3" length="26795712" type="audio/mpeg" />
		</item>
		<item>
		<title>Wireframing forms in HTML</title>
		<link>http://www.hallofbrightcarvings.com/wireframing-forms-in-html/</link>
		<comments>http://www.hallofbrightcarvings.com/wireframing-forms-in-html/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 12:24:41 +0000</pubDate>
		<dc:creator>Steerpike</dc:creator>
				<category><![CDATA[Wireframing]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.hallofbrightcarvings.com/?p=3</guid>
		<description><![CDATA[All important information for forms, such as form instructions, must be
presented before the form itself. The submit button must be the last form element contained
within a form.
All form fields must be associated with their labels using the label HTML tag.
If a form cannot be labeled, it must include a title that explains in brief what [...]]]></description>
			<content:encoded><![CDATA[<p>All important information for forms, such as form instructions, must be<br />
presented before the form itself. The submit button must be the last form element contained<br />
within a form.</p>
<p>All form fields must be associated with their labels using the label HTML tag.<br />
If a form cannot be labeled, it must include a title that explains in brief what the form<br />
field is.</p>
<p>All forms should clearly indicate which form fields are manditory prior to the<br />
actual form inputs. Avoid cryptic hints such as the use of the asterix or different colors as<br />
the sole means of indicating manditory information requirements.</p>
<p>Form fields that are logically related should be grouped in a field set. If<br />
appropriate, the field set should be labeled with a legend.</p>
<pre><code>&lt;p&gt;Fields marked with an asterisk (*) are required.&lt;/p&gt;
&lt;form action="#" method="post"&gt;
&lt;fieldset&gt;
&lt;legend&gt;Personal Information&lt;/legend&gt;
&lt;div&gt;
&lt;label for="fname"&gt;First Name*&lt;/label&gt;
&lt;input id="fname" name="firstname" type="text" /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;label for="lname"&gt;Last Name*&lt;/label&gt;
&lt;input id="lname" name="lastname" type="text" /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;label for="street"&gt;Street Address*&lt;/label&gt;
&lt;input id="street" name="street" type="text" /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;label for="city"&gt;City*&lt;/label&gt;
&lt;input id="city" name="city" type="text" /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;label for="country"&gt;Country*&lt;/label&gt;
&lt;input id="country" name="country" type="text" /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;label for="postcode"&gt;Postcode*&lt;/label&gt;
&lt;input id="postcode" name="postcode" type="text" /&gt;&lt;/div&gt;
&lt;/fieldset&gt;
Would you like to sign up for our newsletter?
&lt;div&gt;
&lt;input id="letteryes" name="newsletter" type="radio" value="yes" /&gt;
&lt;label for="letteryes"&gt;Yes&lt;/label&gt;&lt;/div&gt;
&lt;div&gt;
&lt;input id="letterno" name="newsletter" type="radio" value="no" /&gt;
&lt;label for="letterno"&gt;No&lt;/label&gt;&lt;/div&gt;
&lt;div&gt;
&lt;input name="submit" type="submit" value="Submit" /&gt;&lt;/div&gt;
&lt;/form&gt;</code>
</pre>
<pre>
<code>&lt;form action="#"&gt;
&lt;fieldset&gt;
&lt;legend&gt;Login&lt;/legend&gt;
&lt;div&gt;
&lt;label for="username"&gt;Username&lt;/label&gt;
&lt;input type="text" id="username" name="username" /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;label for="password"&gt;Password&lt;/label&gt;
&lt;input type="password" id="password" name="password"  /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;input id="Submit" name="Submit" value="Submit" type="submit"&gt;
&lt;/div&gt;
&lt;/fieldset&gt;
&lt;/form&gt;</code>
</pre>
<pre>
<code>&lt;form action="#"&gt;
&lt;div&gt;
&lt;input type="text" name="term" title="Search term" /&gt;
&lt;input id="search" name="search" value="Search" type="submit"&gt;
&lt;/div&gt;
&lt;/form&gt;</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.hallofbrightcarvings.com/wireframing-forms-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireframing in HTML</title>
		<link>http://www.hallofbrightcarvings.com/wireframing-in-html/</link>
		<comments>http://www.hallofbrightcarvings.com/wireframing-in-html/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 12:19:24 +0000</pubDate>
		<dc:creator>Steerpike</dc:creator>
				<category><![CDATA[Wireframing]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.hallofbrightcarvings.com/?p=19</guid>
		<description><![CDATA[I&#8217;ve become a recent convert to wireframing in HTML and css, mostly because I got seriously sick of learning a new piece of wireframing software every time I changed jobs.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve become a recent convert to wireframing in HTML and css, mostly because I got seriously sick of learning a new piece of wireframing software every time I changed jobs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hallofbrightcarvings.com/wireframing-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

