<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>WebDH blog - HTML</title>
			<link>http://blog.webdh.com/index.cfm</link>
			<description>This is Troy&apos;s blog for WebDH.com LLC.</description>
			<language>en-us</language>
			<pubDate>Mon, 06 Sep 2010 13:02:31 -0700</pubDate>
			<lastBuildDate>Sat, 09 Aug 2008 15:37:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>webdh.com@gmail.com</managingEditor>
			<webMaster>webdh.com@gmail.com</webMaster>
			
			<item>
				<title>Seal Guard Systems pondering ColdFusion</title>
				<link>http://blog.webdh.com/index.cfm/2008/8/9/Seal-Guard-Systems-pondering-ColdFusion</link>
				<description>
				
				I&apos;ve started working with a new client over the past couple of weeks. Ken Wolfbauer and Kathi Wolfbauer of &lt;a href=&quot;http://www.sealguardsystems.com/&quot;&gt;Seal Guard Systems&lt;/a&gt; who approached me to help with their HTML and SEO. We have been working together in their great showroom in Blaine, MN. I&apos;ve suggested that they move their site under ColdFusion. I&apos;m looking forward to working with Ken and Kathi to promote their products and services on the Internet, including &lt;a href=&quot;http://www.sealguardsystems.com/milgard_fiberglass_windows.htm&quot;&gt;Milgard fiberglass windows&lt;/a&gt; and &lt;a href=&quot;http://www.sealguardsystems.com/MetalRoofing.htm&quot;&gt;Metro steel roofing&lt;/a&gt;. Hopefully I&apos;ll convince Kathi to start using ColdFusion so we can take their website to the next level. 
				</description>
				
				<category>HTML</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 09 Aug 2008 15:37:00 -0700</pubDate>
				<guid>http://blog.webdh.com/index.cfm/2008/8/9/Seal-Guard-Systems-pondering-ColdFusion</guid>
				
			</item>
			
			<item>
				<title>Creating an HTML fieldset</title>
				<link>http://blog.webdh.com/index.cfm/2008/4/7/Creating-an-HTML-fieldset</link>
				<description>
				
				The following HTML will put a solid border around a block of text, with a bolded label. This code snippet is a nice option for highlighting a section of content on a web page.

&lt;code&gt;
&lt;fieldset style=&quot;border-color:#FF0000;&quot;&gt;
&lt;legend&gt;&lt;strong&gt;Amazon Web Services evangelist coming Apr 29&lt;/strong&gt;&lt;/legend&gt;
TCCFUG is proud to be hosting Mike Culver from Amazon.com. Mike will present Amazon Web Services: Web-Scale Computing and What&apos;s possible in a post Web 2.0 world. &lt;a href=&quot;http://upcoming.yahoo.com/event/396951/&quot;&gt;Get the full details&lt;/a&gt;.
&lt;/fieldset&gt;
&lt;/code&gt;

Here is what it looks like when rendered...

&lt;fieldset style=&quot;border-color:#FF0000;&quot;&gt;
&lt;legend&gt;&lt;strong&gt;Amazon Web Services evangelist coming Apr 29&lt;/strong&gt;&lt;/legend&gt;
TCCFUG is proud to be hosting Mike Culver from Amazon.com. Mike will present Amazon Web Services: Web-Scale Computing and What&apos;s possible in a post Web 2.0 world. &lt;a href=&quot;http://upcoming.yahoo.com/event/396951/&quot;&gt;Get the full details&lt;/a&gt;.
&lt;/fieldset&gt;
&lt;br&gt; 
				</description>
				
				<category>HTML</category>				
				
				<pubDate>Mon, 07 Apr 2008 13:27:00 -0700</pubDate>
				<guid>http://blog.webdh.com/index.cfm/2008/4/7/Creating-an-HTML-fieldset</guid>
				
			</item>
			
			<item>
				<title>Creating a favicon.ico file</title>
				<link>http://blog.webdh.com/index.cfm/2008/3/11/Creating-a-faviconico-file</link>
				<description>
				
				I use the PNG 2 ICO (png2ico) command-line utility found &lt;a href=&quot;http://www.winterdrache.de/freeware/png2ico/&quot;&gt;here&lt;/a&gt; to convert a 32x32 png file to an ico file.  Matthias, who authored the software utility, also wrote up a &lt;a href=&quot;http://www.winterdrache.de/freeware/png2ico/favicon.html&quot;&gt;nice explanation&lt;/a&gt; of the &quot;Favorites Icon&quot; file and it&apos;s usage in most common browsers. I think it&apos;s a definate MUST for all websites to take the time to incorporate a favicon.ico file into their site. 
				</description>
				
				<category>HTML</category>				
				
				<pubDate>Tue, 11 Mar 2008 11:12:00 -0700</pubDate>
				<guid>http://blog.webdh.com/index.cfm/2008/3/11/Creating-a-faviconico-file</guid>
				
			</item>
			
			<item>
				<title>Secret to showing/hiding HTML table rows</title>
				<link>http://blog.webdh.com/index.cfm/2007/1/16/Secret-to-showinghiding-table-rows</link>
				<description>
				
				Today I learned about showing/hiding content on a page. All that is needed is wrap the content in a div tag, and use the following javascript to toggle its display.

&lt;code&gt;
document.getElementById(&apos;stufftohide&apos;).style.display = &apos;block&apos; &lt;!-- shows it --&gt;
document.getElementById(&apos;stufftohide&apos;).style.display = &apos;none&apos;  &lt;!-- hides it --&gt;

&lt;div id=&quot;stufftohide&quot;&gt;
here is my content to show and hide
&lt;/div&gt;
&lt;/code&gt;

However, this technique doesn&apos;t work when trying to toggle HTML table rows. I did some digging and found a few blogs that explained the secret. Wrap the rows you want to show/hide inside a &lt;tbody&gt; tag group, and use &quot;table-row-group&quot; in place of &quot;block&quot; to show the rows. Here is a code snippet that works.

&lt;code&gt;
&lt;input type=&quot;Button&quot; value=&quot;Show&quot; onclick=&quot;javascript: document.getElementById(&apos;stufftohide&apos;).style.display = &apos;table-row-group&apos;;&quot;&gt;
&lt;input type=&quot;Button&quot; value=&quot;Hide&quot; onclick=&quot;javascript: document.getElementById(&apos;stufftohide&apos;).style.display = &apos;none&apos;;&quot;&gt;&lt;br /&gt;
&lt;table border=&quot;1&quot;&gt;
&lt;tr&gt;
&lt;td&gt;row 1, cell A&lt;/td&gt;
&lt;td&gt;row 1, cell B&lt;/td&gt;
&lt;/tr&gt;
&lt;tbody id=&quot;stufftohide&quot;&gt;
&lt;tr&gt;
&lt;td&gt;row 2, cell C&lt;/td&gt;
&lt;td&gt;row 2, cell D&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;row 3, cell E&lt;/td&gt;
&lt;td&gt;row 3, cell F&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;/code&gt;

Here is a &lt;a href=&quot;http://blog.webdh.com/demos/20070116.html&quot; target=&quot;_blank&quot;&gt;demo&lt;/a&gt; of this in action. 
				</description>
				
				<category>HTML</category>				
				
				<pubDate>Tue, 16 Jan 2007 16:06:00 -0700</pubDate>
				<guid>http://blog.webdh.com/index.cfm/2007/1/16/Secret-to-showinghiding-table-rows</guid>
				
			</item>
			</channel></rss>