<?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>Worcester Web Site Development Blog &#187; jquery</title>
	<atom:link href="http://worcesterwideweb.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://worcesterwideweb.com</link>
	<description>Worcester Web Site Development Blog</description>
	<lastBuildDate>Thu, 25 Jun 2009 19:13:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>show div on check for checkbox</title>
		<link>http://worcesterwideweb.com/2007/12/11/show-div-on-check-for-checkbox/</link>
		<comments>http://worcesterwideweb.com/2007/12/11/show-div-on-check-for-checkbox/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 17:08:33 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2007/12/11/show-div-on-check-for-checkbox/</guid>
		<description><![CDATA[Sometimes you need to show a div when you click a checkbox, here is how yo do it. You need jquery to establish this.

Code (html)


Check me







&#60;input name=&#34;checkbox&#34; type=&#34;checkbox&#34; onclick=&#34;$(this).is(&#8217;:checked&#8217;) &#38;&#38; $(&#8217;#checked&#8217;).slideDown(&#8217;slow&#8217;) &#124;&#124; $(&#8217;#checked&#8217;).slideUp(&#8217;slow&#8217;);&#34; /&#62;



&#60;p style=&#34;display: none; margin: 10px; height: 100px; background-color: #f5f5f5; padding: 10px&#34; id=&#34;checked&#34;&#62; &#60;/p&#62;



Put some content here



Basicly the paragraph container named checked is [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you need to show a div when you click a checkbox, here is how yo do it. You need <a target="_blank" href="http://www.jquery.com">jquery</a> to establish this.</p>
<div class="ch_code_container" style="font-family: monospace;height:100%;">
<div style="">Code (html)</div>
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Check me
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;input name=&quot;checkbox&quot; type=&quot;checkbox&quot; onclick=&quot;$(this).is(&#8217;:checked&#8217;) &amp;&amp; $(&#8217;#checked&#8217;).slideDown(&#8217;slow&#8217;) || $(&#8217;#checked&#8217;).slideUp(&#8217;slow&#8217;);&quot; /&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p style=&quot;display: none; margin: 10px; height: 100px; background-color: #f5f5f5; padding: 10px&quot; id=&quot;checked&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Put some content here</div>
</li>
</ol>
</div>
<p>Basicly the paragraph container named checked is hidden untill one presses the checkbox.</p>
<p><a target="_blank" href="/demos/checkbox.html">Click here for a demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2007/12/11/show-div-on-check-for-checkbox/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Jquery Wizard Plugin</title>
		<link>http://worcesterwideweb.com/2007/06/04/jquery-wizard-plugin/</link>
		<comments>http://worcesterwideweb.com/2007/06/04/jquery-wizard-plugin/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 20:21:04 +0000</pubDate>
		<dc:creator>Anthony</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://worcesterwideweb.com/2007/06/04/jquery-wizard-plugin/</guid>
		<description><![CDATA[After looking for a jquery plugin that will emulate a windows wizard I decided to make my own (with the help of cody lindley&#8217;s css step menu). I am using Jquery which can be found here and css step menu found here.
The code:
First we need a simple javascript function will hide and display a div, this method is [...]]]></description>
			<content:encoded><![CDATA[<p>After looking for a jquery plugin that will emulate a windows wizard I decided to make my own (with the help of cody lindley&#8217;s css step menu). I am using <a target="_blank" href="http://www.jquery.com">Jquery which can be found here</a> and <a target="_blank" href="http://codylindley.com/CSS/325/css-step-menu">css step menu found here</a>.</p>
<p>The code:</p>
<p>First we need a simple javascript function will hide and display a div, this method is used with jquery and you can learn <a target="_blank" href="http://www.visualjquery.com">how to use this here</a></p>
<div class="ch_code_container" style="font-family: monospace;height:100%;">
<div style="">Code (javascript)</div>
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">function loadnext(divout,divin){$(&quot;.&quot; + divout).hide();$(&quot;.&quot; + divin).fadeIn(&quot;slow&quot;);}</div>
</li>
</ol>
</div>
<p>Next the html code, notice how each step is wrapped in the ID wizardwrapper and each div is assigned a class for the corresponding step number.</p>
<div class="ch_code_container" style="font-family: monospace;height:300px;">
<div style="">Code (html)</div>
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardwrapper&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;1&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h3&gt;Step 1&lt;/h3&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardcontent&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;buttons&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; disabled=&quot;true&quot; class=&quot;previous&quot;&gt; &lt;img src=&quot;/images/arrow_left.png&quot; /&gt; Back &lt;/button&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(1,2);&quot; class=&quot;next&quot;&gt; Next &lt;img src=&quot;/images/arrow_right.png&quot; /&gt; &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;ul id=&quot;mainNav&quot; class=&quot;fiveStep&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;current&quot;&gt;&lt;em&gt;Step 1: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 2: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 3: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 4: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;mainNavNoBg&quot;&gt;&lt;em&gt;Step 5: XXXXXXXX&lt;/em&gt; &lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/ul&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardpanel&quot; class=&quot;2&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h3&gt;Step 2&lt;/h3&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardcontent&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;buttons&quot;&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(2,1);&quot; class=&quot;previous&quot;&gt; &lt;img src=&quot;/images/arrow_left.png&quot; /&gt; Back &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(2,3);&quot; class=&quot;next&quot;&gt; Next &lt;img src=&quot;/images/arrow_right.png&quot; /&gt; &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;ul id=&quot;mainNav&quot; class=&quot;fiveStep&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;lastDone&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 1: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;current&quot;&gt;&lt;em&gt;Step 2: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 3: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 4: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;mainNavNoBg&quot;&gt;&lt;em&gt;Step 5: XXXXXXXX&lt;/em&gt; &lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/ul&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardpanel&quot; class=&quot;3&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h3&gt;Step 3&lt;/h3&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardcontent&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;buttons&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(3,2);&quot; class=&quot;previous&quot;&gt; &lt;img src=&quot;/images/arrow_left.png&quot; /&gt; Back &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(3,4);&quot; class=&quot;next&quot;&gt; Next &lt;img src=&quot;/images/arrow_right.png&quot; /&gt; &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;ul id=&quot;mainNav&quot; class=&quot;fiveStep&quot;&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 1: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;lastDone&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 2: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;current&quot;&gt;&lt;em&gt;Step 3: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; &lt;li&gt;&lt;em&gt;Step 4: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;mainNavNoBg&quot;&gt;&lt;em&gt;Step 5: XXXXXXXX&lt;/em&gt; &lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/ul&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardpanel&quot; class=&quot;4&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h3&gt;Step 4&lt;/h3&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardcontent&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;buttons&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(4,3);&quot; class=&quot;previous&quot;&gt; &lt;img src=&quot;/images/arrow_left.png&quot; /&gt; Back &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(4,5);&quot; class=&quot;next&quot;&gt; Next &lt;img src=&quot;/images/arrow_right.png&quot; /&gt; &lt;/button&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;ul id=&quot;mainNav&quot; class=&quot;fiveStep&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 1: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 2: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;lastDone&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 3: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;current&quot;&gt;&lt;em&gt;Step 4: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;mainNavNoBg&quot;&gt;&lt;em&gt;Step 5: XXXXXXXX&lt;/em&gt; &lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/ul&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardpanel&quot; class=&quot;5&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;h3&gt;Step 5&lt;/h3&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p id=&quot;wizardcontent&quot;&gt; &lt;/p&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;p class=&quot;buttons&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;loadnext(5,4);&quot; class=&quot;previous&quot;&gt; &lt;img src=&quot;/images/arrow_left.png&quot; /&gt; Back &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> &nbsp; &nbsp; &nbsp;&lt;button type=&quot;submit&quot; onclick=&quot;submit()&quot; class=&quot;next&quot;&gt; Finish &lt;img src=&quot;/images/arrow_right.png&quot; /&gt; &lt;/button&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;ul id=&quot;mainNav&quot; class=&quot;fiveStep&quot;&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 1: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 2: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;done&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 3: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-weight: bold;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;lastDone&quot;&gt;&lt;a href=&quot;/&quot;&gt;&lt;em&gt;Step 4: XXXXXXXX&lt;/em&gt;&lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;li class=&quot;mainNavNoBg current&quot;&gt;&lt;em&gt;Step 5: XXXXXXXX&lt;/em&gt; &lt;span&gt;Et nequ a quam turpis duisi&lt;/span&gt;&lt;/li&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/ul&gt;
</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
</ol>
</div>
<p><a target="_blank" href="http://worcesterwideweb.com/jquery/wizard/">A Demo of the wizard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worcesterwideweb.com/2007/06/04/jquery-wizard-plugin/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
