<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Mark Ireland&apos;s Blog - javascript</title>
			<link>http://www.markireland.com.au/blog/index.cfm</link>
			<description>Australian Web App Developer</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 21:26:14 -0500</pubDate>
			<lastBuildDate>Wed, 20 May 2009 00:35:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>markincuba@hotmail.com</managingEditor>
			<webMaster>markincuba@hotmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>markincuba@hotmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Mark Ireland&apos;s Blog</title>
				<link>http://www.markireland.com.au/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>When is a form too long and too slow?</title>
				<link>http://www.markireland.com.au/blog/index.cfm/2009/5/20/When-is-a-form-too-long-and-too-slow</link>
				<description>
				
				I have a form that is longer than one page (and it can be slow depending on what is submitted)

Would it be acceptable design to have a submit button that became disabled (while waiting for the server to respond) with a progress bar inside the button? 
				</description>
				
				<category>javascript</category>				
				
				<pubDate>Wed, 20 May 2009 00:35:00 -0500</pubDate>
				<guid>http://www.markireland.com.au/blog/index.cfm/2009/5/20/When-is-a-form-too-long-and-too-slow</guid>
				
			</item>
			
			<item>
				<title>use your favourite style changer here</title>
				<link>http://www.markireland.com.au/blog/index.cfm/2009/3/28/use-your-favourite-style-changer-here</link>
				<description>
				
				If your url has variables like action=takeAction then adding checkurl() to the onload of the body tag of your page can change the style of the link that got your user there if its id happens to be (in this case) takeAction

It works like a:visited except its only the most recently clicked link.

&lt;pre&gt;
function gup( name )
{
name = name.replace(/[\[]/,&quot;\\\[&quot;).replace(/[\]]/,&quot;\\\]&quot;);
var regexS = &quot;[\\?&amp;]&quot;+name+&quot;=([^&amp;#]*)&quot;;
var regex = new RegExp( regexS );
var results = regex.exec( window.location.href );
if( results == null )
    return &quot;&quot;;
else
    return results[1];
}
function checkurl() {
var ref = gup(&apos;action&apos;).toLowerCase();
if (ref) {
    var a = document.getElementById(ref);
    if(a) {
     YAHOO.util.Dom.setStyle(a,&apos;color&apos;,&apos;#0065b3&apos;);
//use your favourite style changer here
        }
    }
}
&lt;/pre&gt; 
				</description>
				
				<category>javascript</category>				
				
				<pubDate>Sat, 28 Mar 2009 03:41:00 -0500</pubDate>
				<guid>http://www.markireland.com.au/blog/index.cfm/2009/3/28/use-your-favourite-style-changer-here</guid>
				
			</item>
			</channel></rss>