<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Tobby Smith</title>
	
	<link>http://www.tobbysmith.com</link>
	<description>Web Developer</description>
	<lastBuildDate>Wed, 29 Jun 2011 17:09:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TobbySmith" /><feedburner:info uri="tobbysmith" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Apple Offering Free Case</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/eALJEuYKJIo/</link>
		<comments>http://www.tobbysmith.com/2010/07/17/apple-offering-free-case/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 17:00:48 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=112</guid>
		<description><![CDATA[Just a quick note to say how I found the iPhone announcement Friday really funny. I think the free case idea was result of the consistently bad service people continue to receive from AT&#38;T. That is why I stay with Verizon, and will never go back. BTW: Can we have a recall or free upgrade [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tobbysmith.com/?attachment_id=114"><img class="size-medium wp-image-114 alignright" title="Antennagate" src="http://www.tobbysmith.com/wp-content/uploads/2010/07/jobs1-420x0-300x199.jpg" alt="Antennagate" width="210" height="139" /></a>Just a quick note to say how I found the iPhone announcement Friday really funny. I think the free case idea was result of the consistently bad service people continue to receive from AT&amp;T. That is why I stay with Verizon, and will never go back.</p>
<p>BTW: Can we have a recall or free upgrade for the Comcast DVR? That&#8217;s in way worse shape than the iPhone.</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/eALJEuYKJIo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2010/07/17/apple-offering-free-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2010/07/17/apple-offering-free-case/</feedburner:origLink></item>
		<item>
		<title>Alternate Row Styles in Tables</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/CaVmk51HMHI/</link>
		<comments>http://www.tobbysmith.com/2010/02/19/alternate-row-styles-in-tables/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 03:26:29 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=96</guid>
		<description><![CDATA[Even though we use table-less CSS layouts, there are still a lot of times where we still need to use tables for tabular data. Using classes to affect the row colors can be a pain sometimes. Ever catch yourself doing this? &#60;table&#62; &#60;tbody&#62; &#60;tr class="odd"&#62; &#60;td&#62;Row 1&#60;/td&#62; &#60;/tr&#62; &#60;tr&#62; &#60;td&#62;Row 2&#60;/td&#62; &#60;/tr&#62; &#60;tr class="odd"&#62; &#60;td&#62;Row [...]]]></description>
			<content:encoded><![CDATA[<p>Even though we use table-less CSS layouts, there are still a lot of times where we still need to use tables for tabular data. Using classes to affect the row colors can be a pain sometimes. Ever catch yourself doing this?</p>
<pre>&lt;table&gt;
    &lt;tbody&gt;
        &lt;tr class="odd"&gt;
            &lt;td&gt;Row 1&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr&gt;
            &lt;td&gt;Row 2&lt;/td&gt;
        &lt;/tr&gt;
        &lt;tr class="odd"&gt;
            &lt;td&gt;Row 3&lt;/td&gt;
        &lt;/tr&gt;
    &lt;/tbody&gt;
&lt;/table&gt;
</pre>
<p>Adding a class to each row is error prone and takes way too much time. To get around this, a good idea is to use a little JavaScript.</p>
<pre>function alternate(id){
    if(document.getElementsByTagName){
        var table = document.getElementById(id);
        var rows = table.getElementsByTagName("tr");
        for(i = 0; i &lt; rows.length; i++) {
            //manipulate rows
            if(i % 2 == 0) {
                rows[i].className = "even";
            } else {
                rows[i].className = "odd";
            }
        }
    }
}
</pre>
<p>This simple JavaScript takes a table of a certain ID and finds the number of rows. Looping through the rows, it divides the row count by 2 to see if there is a  remainder. No remainder, it&#8217;s even, else  it&#8217;s odd. Finally, it automatically inserts the appropriate class. Works great on large tables (&lt;1000 rows). Simply use CSS to style the even and odd classes.</p>
<p>To use, simply attach an event handler:</p>
<pre>&lt;body onload="alternate('idOfMyTable')"&gt;
</pre>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/CaVmk51HMHI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2010/02/19/alternate-row-styles-in-tables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2010/02/19/alternate-row-styles-in-tables/</feedburner:origLink></item>
		<item>
		<title>JSON in jQuery 1.4</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/UA8vjCDJ6yM/</link>
		<comments>http://www.tobbysmith.com/2010/02/11/json-in-jquery-1-4/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 12:01:09 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jquery 1.4]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=94</guid>
		<description><![CDATA[Just a note  on JSON using jQuery 1.4: It&#8217;s a lot stricter about what you pass it. {Animal:&#8221;DOG&#8221;, Name:&#8221;Fido&#8221;} must now be {&#8220;Animal&#8221;:&#8221;DOG&#8221;,&#8221;Name&#8221;:&#8221;Fido&#8221;}. Notice the extra quotes around the field names now that are required. Looking forward to finishing that live table.]]></description>
			<content:encoded><![CDATA[<p>Just a note  on JSON using jQuery 1.4:</p>
<p>It&#8217;s a lot stricter about what you pass it. {Animal:&#8221;DOG&#8221;, Name:&#8221;Fido&#8221;} must now be {&#8220;Animal&#8221;:&#8221;DOG&#8221;,&#8221;Name&#8221;:&#8221;Fido&#8221;}. Notice the extra quotes around the  field names now that are required.</p>
<p>Looking forward to finishing that live table.</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/UA8vjCDJ6yM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2010/02/11/json-in-jquery-1-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2010/02/11/json-in-jquery-1-4/</feedburner:origLink></item>
		<item>
		<title>jQuery 1.4 is finally coming!</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/WRiSNnxWcqE/</link>
		<comments>http://www.tobbysmith.com/2010/01/11/jquery-1-4-is-finally-coming/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 21:05:20 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery 1.4]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=82</guid>
		<description><![CDATA[jQuery 1.4 will be released January 14th (pun intended) , and will include a lot of new functionality. My favorites are synchronous animations, and lazy loader. Lazy loader allows you to load js or css on the fly. Even though YUI does this too, it&#8217;s only a matter of time before YUI 3 becomes a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery14.com/"><img class="alignleft size-medium wp-image-84" title="Click to Visit 14 days of jQuery 1.4" src="http://www.tobbysmith.com/wp-content/uploads/2010/01/jquery-300x175.jpg" alt="Screenshot of jQuery 1.4 Website" width="300" height="175" /></a>jQuery 1.4 will be released January 14th (pun intended) , and will include a lot of new functionality. My favorites are synchronous animations, and lazy loader. Lazy loader allows you to load js or css on the fly.</p>
<p>Even though YUI does this too, it&#8217;s only a matter of time before YUI 3 becomes a 400 pound gorilla just like YUI 2.</p>
<p>They have posted a <a title="Click to Visit 14 Days of jQuery website" href="http://jquery14.com/" target="_blank">new site for the release</a>, and to kick it off there will be 14 days of releases related to jQuery.</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/WRiSNnxWcqE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2010/01/11/jquery-1-4-is-finally-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2010/01/11/jquery-1-4-is-finally-coming/</feedburner:origLink></item>
		<item>
		<title>Shoes are just not for basketball players anymore</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/RpXJCWaqN-M/</link>
		<comments>http://www.tobbysmith.com/2010/01/09/shoes-are-just-not-for-basketball-players-anymore/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 18:45:40 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[nerd]]></category>
		<category><![CDATA[Star Wars]]></category>
		<category><![CDATA[Star Wars Shoes]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=74</guid>
		<description><![CDATA[Check out these awesome Star Wars shoes from adidas®! These sweet Marty McFly sneakers will set you back about $100 bucks, but in my opinion, they&#8217;re worth every penny. They also have an awesome flash application you have to check out. Warning: Wearing these shoes might members of the opposite sex. (Level 80 Paladins have [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.tobbysmith.com/wp-content/uploads/2010/01/skywalker_shoes.jpg" rel="shadowbox[post-74];player=img;"><img class="size-full wp-image-73 aligncenter" title="adidas® Luke Skywalker Shoes " src="http://www.tobbysmith.com/wp-content/uploads/2010/01/skywalker_shoes.jpg" alt="adidas® Luke Skywalker Shoes" width="544" height="322" /></a></p>
<p style="text-align: center;">Check out these awesome Star Wars shoes from adidas®! These sweet Marty McFly sneakers will set you back about $100 bucks, but in my opinion, they&#8217;re worth every penny.</p>
<p style="text-align: center;">They also have an awesome flash application you have to <a title="Click to View Star Wars Shoes Application (New Window)" href="http://www.adidas.com/campaigns/deathstar/content/Default.aspx?cc=us&amp;site=adidasus" target="_blank">check out</a>.</p>
<p style="text-align: center;">Warning: Wearing these shoes might members of the opposite sex.<br />
(<a title="Click to see chart on Level 80 Paladin (New Window)" href="http://graphjam.com/2009/08/26/song-chart-memes-have-girlfriend/" target="_blank">Level 80 Paladins</a> have nothing to worry about.)</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/RpXJCWaqN-M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2010/01/09/shoes-are-just-not-for-basketball-players-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2010/01/09/shoes-are-just-not-for-basketball-players-anymore/</feedburner:origLink></item>
		<item>
		<title>Whew… Finally</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/vtmx2V7M1t4/</link>
		<comments>http://www.tobbysmith.com/2009/12/17/whew-finally/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 05:32:10 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=62</guid>
		<description><![CDATA[I finally most most of the site up and running. Added most of my portfolio shots, and installed the contact form. I have a couple of new freelance jobs starting soon, so if you have any freelance work for early 2010, get it in soon. Whew&#8230; Feels good to finally tie off some of those [...]]]></description>
			<content:encoded><![CDATA[<p>I finally most most of the site up and running. Added most of my portfolio shots, and installed the contact form. I have a couple of new freelance jobs starting soon, so if you have any freelance work for early 2010, get it in soon.</p>
<p>Whew&#8230; Feels good to finally tie off some of those loose ends. Being on the WordPress platform will definitely help me keep on track with making content updates. I still have more tweaks to make, so if you find anything that is broke, just let me know.</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/vtmx2V7M1t4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2009/12/17/whew-finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2009/12/17/whew-finally/</feedburner:origLink></item>
		<item>
		<title>Adding some new updates and styles</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/quz3rSQMbHk/</link>
		<comments>http://www.tobbysmith.com/2009/12/04/adding-some-new-updates-and-styles/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 02:47:07 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=27</guid>
		<description><![CDATA[About to add some major updates to the website. Stay tuned!]]></description>
			<content:encoded><![CDATA[<p>About to add some major updates to the website. Stay tuned!</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/quz3rSQMbHk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2009/12/04/adding-some-new-updates-and-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2009/12/04/adding-some-new-updates-and-styles/</feedburner:origLink></item>
		<item>
		<title>Site Bugs</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/8q0nW61N-jE/</link>
		<comments>http://www.tobbysmith.com/2009/10/23/site-bugs/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 02:27:49 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bugs]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[todo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=22</guid>
		<description><![CDATA[There are still going to be some site bugs for a few days. These include: Need to add portfolio pictures Need to add contact form Need to add and configure plugins Need to lock down platform. Thanks, Tobby]]></description>
			<content:encoded><![CDATA[<p>There are still going to be some site bugs for a few days. These include:</p>
<ul>
<li>Need to add portfolio pictures</li>
<li>Need to add contact form</li>
<li>Need to add and configure plugins</li>
<li>Need to lock down platform.</li>
</ul>
<p>Thanks,</p>
<p>Tobby</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/8q0nW61N-jE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2009/10/23/site-bugs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2009/10/23/site-bugs/</feedburner:origLink></item>
		<item>
		<title>Home</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/JF3qMuIkCcg/</link>
		<comments>http://www.tobbysmith.com/2009/10/23/home/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 02:20:48 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.tobbysmith.com/?p=15</guid>
		<description><![CDATA[Hi, my name is Tobby Smith and I have been making web sites for over 6 years. I decided to design this web site so I could demonstrate my design skills, display my portfolio, and tell you a little about myself. If you need a skilled web designer with extensive experience in developing online marketing [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;float:right; border:none;" title="Picture of Tobby Smith" src="http://www.tobbysmith.com/wp-content/uploads/2009/10/tobby_picture.png" alt="Picture of Tobby Smith" width="256" height="293" />Hi, my name is Tobby Smith and I have been making web sites for over 6 years. I decided to design this web site so I could demonstrate my design skills, display my portfolio, and tell you a little about myself.</p>
<p>If you need a skilled web designer with extensive experience in developing online marketing campaigns, I&#8217;m your man. Feel free to take a look at my portfolio, and contact me if you have any questions.</p>
<h3>So What Do I Do&#8230; Exactly?</h3>
<p>I currently work as a Web Designer / Developer. I have experience doing numerous things web related, including:</p>
<ul>
<li>Web Design / Development</li>
<li>Web Analytics</li>
<li>E-mail Marketing</li>
<li>Internet Promotions</li>
<li>Project Management</li>
</ul>
<p>With that said, I hope you enjoy learning a little more about me, and I hope to hear from you.</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/JF3qMuIkCcg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2009/10/23/home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2009/10/23/home/</feedburner:origLink></item>
		<item>
		<title>New Build</title>
		<link>http://feedproxy.google.com/~r/TobbySmith/~3/_YcadUxTqjE/</link>
		<comments>http://www.tobbysmith.com/2009/10/22/hello-world/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 22:51:50 +0000</pubDate>
		<dc:creator>Tobby</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tobbysmith.com/?p=1</guid>
		<description><![CDATA[Just a quick note. I hope to have the site up and running pretty quickly. I&#8217;ve decided for now to take my existing site structure and build inside of the WordPress system. Tonight I have installed the base system, and the background and repeat images. Thanks, Tobby]]></description>
			<content:encoded><![CDATA[<p>Just a quick note. I hope to have the site up and running pretty quickly. I&#8217;ve decided for now to take my existing site structure and build inside of the WordPress system. Tonight I have installed the base system, and the background and repeat images.</p>
<p>Thanks,</p>
<p>Tobby</p>
<img src="http://feeds.feedburner.com/~r/TobbySmith/~4/_YcadUxTqjE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.tobbysmith.com/2009/10/22/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.tobbysmith.com/2009/10/22/hello-world/</feedburner:origLink></item>
	</channel>
</rss>

