<?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>Beginnercode.com &#187; ^Lestat</title>
	<atom:link href="http://www.beginnercode.com/author/lestat/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beginnercode.com</link>
	<description>The adventures of an amateur coder</description>
	<lastBuildDate>Thu, 15 Apr 2010 20:17:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
  <link>http://www.beginnercode.com</link>
  <url>http://www.beginnercode.com/wp-content/themes/neuron/favicon.ico</url>
  <title>Beginnercode.com</title>
</image>
		<item>
		<title>Using ui autocomplete as a dropdown, with type in</title>
		<link>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/</link>
		<comments>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 15:25:46 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=298</guid>
		<description><![CDATA[I had been using an autocomplete plugin by bassistance. 2 months later jQuery UI added autocomplete to their list of widgets. Like many plugins out there I was unable to find an autocomplete that was easy to use for my purposes. The closest I recently came to was the sexy combo plugin. I cant remember [...]]]></description>
			<content:encoded><![CDATA[<p>I had been using an autocomplete plugin by <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/">bassistance</a>. 2 months later jQuery UI added autocomplete to their list of widgets. Like many plugins out there I was unable to find an autocomplete that was easy to use for my purposes. The closest I recently came to was the <a href="http://code.google.com/p/sexy-combo/">sexy combo plugin</a>. I cant remember why but it was just a tad short of what I wanted to do, and I&#8217;m still quite a javascript novice.</p>
<p>I came up with a way to use the jQuery UI autocomplete widget as a &lt;select&gt; that you could also type in something if the choices in the dropdown didn&#8217;t fit your needs.</p>
<p><img src="http://www.beginnercode.com/wp-content/imgupload/2010/04/ui-autocomplete-dropdown.jpg" alt="ui-autocomplete-dropdown" title="ui-autocomplete-dropdown" width="431" height="229" class="aligncenter size-full wp-image-304" /></p>
<p>This example uses a local data source, but you can come up with creative ways to use remote JSON sources if you like.</p>
<div style="margin:10px 0 20px 0;text-align:center;"><a href="http://www.library.beginnercode.com/jQuery/ui/autocomplete.php" target="_blank">Click here for the demo</a></div>
<pre class="brush: php;">
&lt;script type=&quot;text/javascript&quot;&gt;
	$(document).ready(function() {

		// dropdown/ auto suggest
		$(&quot;.ui_dropdown&quot;).autocomplete({
			minLength: 0,
			delay: 0
		});

		$(&quot;.ui_dropdown&quot;).click(function(){

			var input = $(this);
			var inputID = input.attr('id');

			// close if already visible
			if (input.autocomplete(&quot;widget&quot;).is(&quot;:visible&quot;)) {
				input.autocomplete(&quot;close&quot;);
				return false;
			}

			// set source(s)
			var myData = '';
			if(inputID == 'input1'){
				myData = [&quot;foo&quot;,&quot;bar&quot;,&quot;hello&quot;,&quot;world&quot;];
			} else {
				myData = [&quot;1&quot;,&quot;2&quot;,&quot;3&quot;,&quot;4&quot;];
			}

			// load source
			input.autocomplete({
				source: myData
			});

			// fire search event
			input.autocomplete(&quot;search&quot;, &quot;&quot;);
			input.focus();
			return false;
		});		

	});
&lt;/script&gt;
</pre>
<p>In this script I am using the input id&#8217;s to define the data source.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2010/04/01/using-ui-autocomplete-as-a-dropdown-with-type-in/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Cloning table rows and jQuery UI Datepicker()</title>
		<link>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/</link>
		<comments>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 18:22:49 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=254</guid>
		<description><![CDATA[I&#8217;m rather new to both javascript and jQuery. I ran into an issue while cloning table rows that had inputs, and jQuery UI datepicker.
The cloned datepicker input would insert the picked date into the original inputs rather than the cloned row.

The inputs in my table rows had no ID&#8217;s. So what I found was either [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m rather new to both javascript and jQuery. I ran into an issue while cloning table rows that had inputs, and jQuery UI datepicker.</p>
<p>The cloned datepicker input would insert the picked date into the original inputs rather than the cloned row.<br />
<img src="http://www.beginnercode.com/wp-content/imgupload/2009/12/cloneDatepicker.jpg" alt="cloneDatepicker" title="cloneDatepicker" width="379" height="302" class="aligncenter size-full wp-image-276" /></p>
<p>The inputs in my table rows had no ID&#8217;s. So what I found was either jQuery or UI was dynamically creating it&#8217;s own DOM id&#8217;s for the inputs in the table rows that had the datepicker call. Datepicker also was dynamically inserting a class &#8220;hasDatepicker&#8221; into the inputs that had the datepicker call.</p>
<p>I resolved this by:<br />
1. Looping through the cloned rows inputs looking for any inputs with the class &#8220;hasDatepicker&#8221;.<br />
2. Removing the hasDatepicker class from any inputs with that class.<br />
3. Getting that inputs current id, incrementing it by 1, and reassigning it.<br />
4. Re-initializing the datepicker call.</p>
<div style="margin:10px 0 20px 0;text-align:center;"><a href="http://www.library.beginnercode.com/jQuery/inputs_on_the_fly/cloneDatepicker.php" target="_blank">Click here for the demo</a></div>
<pre class="brush: php;">
&lt;script type=&quot;text/javascript&quot;&gt;

$(document).ready(function(){

  // -- Clone table rows
  $(&quot;.cloneTableRows&quot;).live('click', function(){
    // do the cloning...

    // new rows datepicker need to be re-initialized
    $(newRow).find(&quot;input&quot;).each(function(){

      // if the current input has the hasDatpicker class
      if($(this).hasClass(&quot;hasDatepicker&quot;)){
        var this_id = $(this).attr(&quot;id&quot;); // current inputs id
        var new_id = this_id +1; // a new id
        $(this).attr(&quot;id&quot;, new_id); // change to new id
        $(this).removeClass('hasDatepicker'); // remove hasDatepicker class
        $(this).datepicker(); // re-init datepicker
      }

    });

  });

});

&lt;/script&gt;
</pre>
<p>Whats really neat about this particular js, is that you can call it from any table that has an id.</p>
<p><b>The only thing I have yet to figure out is how to reset the cloned datepicker to use the default class called date format. </b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/12/17/cloning-table-rows-and-jquery-ui-datepicker/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free DVD Software through October 31</title>
		<link>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/</link>
		<comments>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 21:17:38 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=236</guid>
		<description><![CDATA[winxdvd.com is giving away DVD Authoring, and DVD ripping software between now and October 31, 2009.
I downloaded and installed as soon as darkmoon told me about it. Thanks for the tip. They installed smoothly on my system, and at the price of FREE you can&#8217;t go wrong. Go grab your copies!
DVD Authoring: here 
DVD Ripping/ [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.beginnercode.com/wp-content/imgupload/2009/10/ripper.jpg" alt="ripper" title="ripper" width="150" height="187" class="alignleft size-full wp-image-238"  style="float:left;" />winxdvd.com is giving away DVD Authoring, and DVD ripping software between now and October 31, 2009.</p>
<p>I downloaded and installed as soon as <a href="http://life.firelace.com/">darkmoon</a> told me about it. Thanks for the tip. They installed smoothly on my system, and at the price of FREE you can&#8217;t go wrong. Go grab your copies!</p>
<p>DVD Authoring:<a href="http://www.winxdvd.com/specialoffer/oct09.htm"> here </a><br />
DVD Ripping/ Converting: <a href="http://www.winxdvd.com/specialoffer/sep0902.htm"> here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/10/20/free-dvd-software-through-october-31/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Javascript: Focus() on a textbox</title>
		<link>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/</link>
		<comments>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 19:09:47 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=233</guid>
		<description><![CDATA[A dirty way to run js script inline and bring focus to an element:

&#60;html&#62;
&#60;body&#62;

    &#60;form method=&#34;post&#34; action=&#34;index.php&#34; id=&#34;myForm&#34;&#62;
        &#60;p&#62; Login: &#60;input type=&#34;text&#34; name=&#34;pwd&#34; id=&#34;pwd&#34; /&#62;  &#60;/p&#62;
    &#60;/form&#62;

    &#60;script type=&#34;text/javascript&#34;&#62;document.myForm.pwd.focus();&#60;/script&#62;

&#60;/body&#62;
&#60;/html&#62;

Notice that both the form and form element have an [...]]]></description>
			<content:encoded><![CDATA[<p>A dirty way to run js script inline and bring focus to an element:</p>
<pre class="brush: xml;">
&lt;html&gt;
&lt;body&gt;

    &lt;form method=&quot;post&quot; action=&quot;index.php&quot; id=&quot;myForm&quot;&gt;
        &lt;p&gt; Login: &lt;input type=&quot;text&quot; name=&quot;pwd&quot; id=&quot;pwd&quot; /&gt;  &lt;/p&gt;
    &lt;/form&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;document.myForm.pwd.focus();&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Notice that both the form and form element have an ID</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/08/12/javascript-focus-on-a-textbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Backup your Notepad++ FTP items</title>
		<link>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/</link>
		<comments>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 15:02:08 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=202</guid>
		<description><![CDATA[So in addition to reformatting friends and relatives computers, about every 2 years I clean out my own. Each time I have, I&#8217;ve lost my Notepad++ FTP synchronize settings.
In Vista they can be found in:
C:\Users\AppData\Roaming\Notepad++\plugins\config\FTP_synchronize.ini

Copy them to backup and replace. In case an update gets hosed, or you are re-installing.
]]></description>
			<content:encoded><![CDATA[<p>So in addition to reformatting friends and relatives computers, about every 2 years I clean out my own. Each time I have, I&#8217;ve lost my Notepad++ FTP synchronize settings.</p>
<p>In Vista they can be found in:<br />
<strong>C:\Users\AppData\Roaming\Notepad++\plugins\config\FTP_synchronize.ini</strong></p>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2009/08/notepadFTPBackup.jpg"><img src="http://www.beginnercode.com/wp-content/imgupload/2009/08/notepadFTPBackup.jpg" alt="notepadFTPBackup" title="notepadFTPBackup" width="425" height="320" class="aligncenter size-full wp-image-204" /></a></p>
<p>Copy them to backup and replace. In case an update gets hosed, or you are re-installing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/08/04/backup-your-notepad-ftp-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Acrobat Reader WITHOUT Adobe Update manager</title>
		<link>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/</link>
		<comments>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 13:16:50 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/?p=198</guid>
		<description><![CDATA[Recently I&#8217;ve been helping out friends and relations reformat a few computers. They are older, but are speedy enough for their basic needs. One of the sick system hogs (I&#8217;ve found) is the adobe update manager.
Most browsers come with update managers, so I feel the update manager is bloated and not necessary. It likes to [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve been helping out friends and relations reformat a few computers. They are older, but are speedy enough for their basic needs. One of the sick system hogs (I&#8217;ve found) is the adobe update manager.</p>
<p>Most browsers come with update managers, so I feel the update manager is bloated and not necessary. It likes to place its services in the startup causing unneeded processing power. </p>
<p>When it came to reformatting my own laptop, there was no way I was going to install acrobat reader from adobe using their typical download page. Which incidentally, if your not careful will also install a toolbar. You need to uncheck that option.</p>
<p>Adobe does have a page where you can download directly without the ridiculous manager. Hat tip to <a href="http://www.walkernews.net/2007/06/21/all-version-adobe-reader-direct-download/">Walker News</a>, who provided me with the adobe direct download link. (<a href="http://get.adobe.com/reader/otherversions/">http://get.adobe.com/reader/otherversions/</a>).</p>
<p><b>UPDATE: </b> This no longer works. I now run older versions from old version.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2009/07/30/get-acrobat-reader-without-adobe-update-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Despite rampant bailouts, decency and self responsibility still live.</title>
		<link>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/</link>
		<comments>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 19:04:49 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Interest]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/</guid>
		<description><![CDATA[ 
So enraged at the bailouts I bought myself a nifty yardsign from cafepress. I&#8217;ve had several passerby&#8217;s knock on my door and ask where I got it. Even a few cars stopped and inquired.
Last Friday night we had just crawled into bed (was a rough week), and there was a knock at the door. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/11/bailoutsign.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="164" alt="bailoutSign" src="http://www.beginnercode.com/wp-content/imgupload/2008/11/bailoutsign-thumb.jpg" width="244" align="left" border="0" /></a> </p>
<p>So enraged at the bailouts I bought myself a <a href="http://signs.cafepress.com/item/wheres-my-bailout-yard-sign/307378698">nifty yardsign from cafepress.</a> I&#8217;ve had several passerby&#8217;s knock on my door and ask where I got it. Even a few cars stopped and inquired.</p>
<p>Last Friday night we had just crawled into bed (was a rough week), and there was a knock at the door. It was one of those &quot;Are you kidding me?&quot; moments. Anyhow I went to the door. As I approached it I heard my next door neighbor lady giving a scolding. Now I was curious.</p>
<p>I turned on the porch lights and found her surrounded by 4 teenage boys, and she was still ripping them a new one. She spotted a strange vehicle parked along the road and had observed the teens yanking and ripping my sign from the ground. She basically arrested them, and brought them to my door. Most of them had a &quot;ruh-roh&quot; look in their eyes. She had asked them if they knew what &quot;restitution&quot; meant. One of them who seemed to care less what happened to them attempted to answer. </p>
<p>Then it dawned on me. It was getting colder, and the leaves on my silver maples finally fell, and I have been incredibly busy with life lately. Perfect! I suggested to the young men that 1/2 hour of raking from each of them would cover the expense as well as the inconvenience. However, it was late at night. My neighbor reminded the boys that she got their license plate. I asked them to return the next day on their honor to come and rake. Don&#8217;t get me wrong, I&#8217;ve had my share of mischief in my youth. So in a way I was thinking &quot;awww you are sooo busted&quot;. Then I thought about the $30 the sign cost me, and how I don&#8217;t work for someone else to throw my work away. So then I was getting upset, especially since the sign was specifically about bailouts.</p>
<p>Much to my surprise 3 of the 4 showed up while I was at work. My wife handed them all rakes and away they went. I just want to say how proud I am of the young <strong>men</strong> who showed for their correction. These boys will go far in life if they continue to abide by such morals (which certainly means they don&#8217;t fit the bill for a congress person). </p>
<p>My wife gave them all bottled water. My toddler even went out and talked with them. One of them was aspiring to be a dentist. Funny how it struck me. At first I could care less.&#160; After the whole thing was finished I realized it worked out exactly how it was supposed to. No bailouts for them, no grudges on both parties. Just facing the music, like men, and moving on. </p>
<p>As for the one that had no spine&#8230; I&#8217;m quite sure that he will someday be forced to grow one, but it&#8217;s too bad that it will probably be in a much severe way later in life. If he doesn&#8217;t learn life lessons now, <strike>he&#8217;ll end up in congress</strike>.</p>
<p>I&#8217;m so glad there are people like my neighbors and that there are young men like this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/11/17/despite-rampant-bailouts-decency-and-self-responsibility-still-live/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Return key doesn&#8217;t play nice in web form using Internet Explorer</title>
		<link>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/</link>
		<comments>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 20:40:00 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/</guid>
		<description><![CDATA[I ran across an interesting situation where some users of mine were complaining that a form I created &#8220;didn&#8217;t work&#8221;. Kind of strange to get this complaint after almost a full year of operation. I remember testing the xhtml and css design in both firefox and IE browsers and it all checked out. What I [...]]]></description>
			<content:encoded><![CDATA[<p>I ran across an interesting situation where some users of mine were complaining that a form I created &#8220;didn&#8217;t work&#8221;. Kind of strange to get this complaint after almost a full year of operation. I remember testing the xhtml and css design in both firefox and IE browsers and it all checked out. What I didn&#8217;t think of checking was the behavior of browsers when one presses the return key. With the help of <a href="http://www.fiddlertool.com/fiddler/">Fiddler</a> (thanks to <a href="http://www.aviditysoftware.com/">Casey Williams</a> for the Fiddler suggestion) this is what I discovered:</p>
<table style="width: 460px; border:1px solid #000; border-collapse: collapse; margin: 0 auto;" >
<tr>
<th style="background-color: #E8FFFF; text-align: center; border-bottom: 1px solid #333; width: 160px; "></th>
<th style="background-color: #E8FFFF; text-align: center;  border-bottom: 1px solid #333; ">IE</th>
<th style="background-color: #E8FFFF;  border-bottom: 1px solid #333; ">Firefox</th>
</tr>
<tr>
<th style="border-right: 1px solid #333; padding: 4px;">Submit Button Clicked</th>
<td style="border-bottom: 1px solid #ccc; padding: 4px;">All inputs $_POSTed</td>
<td style="border-bottom: 1px solid #ccc; padding: 4px;">All inputs $_POSTed</td>
</tr>
<tr>
<th style="border-right: 1px solid #333; padding: 4px;">Return Key Pressed</th>
<td style="background-color: #FFF28E; padding: 4px;">All inputs $_POSTed<br />except form buttons</td>
<td style=" padding: 4px;">All inputs $_POSTed</td>
</tr>
</table>
<p style="text-align: center;">(<a href='http://www.beginnercode.com/wp-content/imgupload/2008/09/ie_ff_input_comparison.jpg' title='ie_ff_input_comparison.jpg'>For a larger, more detailed image click here</a>)</p>
<p>As you can see, when my IE users were pressing the return key, the button itself was not being $_POSTed. So what right? Well what if you were checking if the submit button was pressed before doing any processing? Like so&#8230;</p>
<pre class="brush: php;">
&lt; ?php
if(isset($_POST['button_name'])){
    // validate the user entries...
}
?&gt;
</pre>
<p>This would fail if the user hit the return key in IE7. I haven&#8217;t tested earlier versions. </p>
<p><a href="http://www.beginnercode.com/examples/IE7_returnKey.php" target="_blank">View the example</a>. Test it in both browsers.</p>
<p>Right now the only thing that was suggested to me was to add a hidden field to mimic the submit button in your form like so:</p>
<pre class="brush: php;">
&lt;form ...&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;button_name&quot; value=&quot;whatever&quot;... /&gt;
&lt;/form&gt;
</pre>
<p>That works just fine.</p>
<p>From perusing irc and several forums, the only response as to WHY this happens are comments like &#8220;It&#8217;s IE, what do you expect?&#8221;. I&#8217;m already annoyed that IE doesn&#8217;t think it has to adapt to web standards, but this ont really caught me off guard. </p>
<p>I&#8217;m wondering if any readers might have some input on my inputs ;P</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/09/26/return-key-doesnt-play-nice-in-web-form-using-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Talk like a pirate day 2008</title>
		<link>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/</link>
		<comments>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 13:46:35 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/09/19/talk-like-a-pirate-day-2008/</guid>
		<description><![CDATA[Ahoy there!
Just a reminder that today is talk like a pirate day! Arggghhh!
All posts and comments for today will be translated in to pirate speak by using the nifty text plugin from Dougal Campbell. It looks like it hasn&#8217;t been updated in a while, but it still works. At least in version 2.1.3.
So what are [...]]]></description>
			<content:encoded><![CDATA[<p>Ahoy there!<br />
Just a reminder that today is <a href="http://www.talklikeapirate.com/">talk like a pirate day</a>! Arggghhh!</p>
<p>All posts and comments for today will be translated in to pirate speak by using the nifty text plugin from <a href="http://dougal.gunters.org/blog/2004/08/30/text-filter-suite">Dougal Campbell</a>. It looks like it hasn&#8217;t been updated in a while, but it still works. At least in version 2.1.3.</p>
<p>So what are you waiting for people!? Let&#8217;s have some fun in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/09/19/talk-like-a-pirate-day-2008/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screen shots a snap with Vista snip tool</title>
		<link>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/</link>
		<comments>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 13:50:33 +0000</pubDate>
		<dc:creator>^Lestat</dc:creator>
				<category><![CDATA[General Site Maint]]></category>

		<guid isPermaLink="false">http://www.beginnercode.com/index.php/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/</guid>
		<description><![CDATA[ I was searching my Vista accessories for hyperteminal and stumbled upon a built in screen shot tool in Vista called Snipping Tool. I&#8217;m sure to most it&#8217;s nothing new, but coming late in the game leaves for more surprises!
You can find it in the start menu -> all programs -> accessories. 
By default there [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="160" alt="startMenu_snip" src="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip-thumb.jpg" width="151" align="right" border="0" /></a> I was searching my Vista accessories for hyperteminal and stumbled upon a built in screen shot tool in Vista called <strong>Snipping Tool</strong>. I&#8217;m sure to most it&#8217;s nothing new, but coming late in the game leaves for more surprises!</p>
<p>You can find it in the <strong>start menu -> all programs -> accessories</strong>. </p>
<p>By default there is an outline around any window space that you choose to grab. This can be turned off by clearing the check box in the <strong>options -></strong>&#8220;<em>Show selection ink after snips are captured</em>&#8220;. </p>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip1.jpg"></a></p>
<p style="text-align: center"><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/snip-options.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="231" alt="snip_Options" src="http://www.beginnercode.com/wp-content/imgupload/2008/07/snip-options-thumb.jpg" width="244" border="0" /></a></p>
<p>You can take snips of menus and the like this:</p>
<ol>
<li>Open Snipping Tool </li>
<li>Press Escape </li>
<li>Navigate to the menu, or start menu area </li>
<li>Press Ctrl + Print Screen (PC) </li>
<li>Use the snip tool </li>
</ol>
<p>Of course to take screen shots of the snipping tool, I needed to use the old stand by <a href="http://www.traction-software.co.uk/screengrabpro/"><em>Screen Grab Pro</em></a><em>. </em>Otherwise it took a selection of the desktop behind the app.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:11c1f378-454e-4ee5-bdd3-9c3ca633bbfb" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/Vista" rel="tag">Vista</a>,<a href="http://technorati.com/tags/snip%20tool" rel="tag">snip tool</a>,<a href="http://technorati.com/tags/screen%20shot" rel="tag">screen shot</a></div>
<p><a href="http://www.beginnercode.com/wp-content/imgupload/2008/07/startmenu-snip1.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.beginnercode.com/2008/07/29/screen-shots-a-snap-with-vista-snip-tool/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
