<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 

    <channel>

    	<title>Web Design &amp; Development Tutorials, and Portfolio of Jeff Seals - epochDEV</title>
    	<link>http://www.epochdev.com/pages/rss.php</link>
    	<description>The Developers' Guild: Web Design, Development, and Programming Tutorials &amp; Talk. Learn Web Design, PHP, JavaScript, jQuery, HTML5, CSS, and much more.</description>
    	<language>en-us</language>
    	<pubDate>Fri, 24 May 2013 05:32:13 -0400</pubDate>
    	<managingEditor>jeff@epochdev.com (Jeff Seals)</managingEditor>
    	<webMaster>jeff@epochdev.com (Jeff Seals)</webMaster>
    	<ttl>1440</ttl>
    	<atom:link href="http://www.epochdev.com/pages/rss.php" type="application/rss+xml" rel="self"/>


    	<image>
    	
    		<title>Web Design &amp; Development Tutorials, and Portfolio of Jeff Seals - epochDEV</title>
    		<link>http://www.epochdev.com/pages/rss.php</link>
    		<url>http://www.epochdev.com/images/site/favicon.png</url>
    		<width>32</width>
    		<height>32</height>
    		<description>The Developers' Guild: Web Design, Development, and Programming Tutorials &amp; Talk. Learn Web Design, PHP, JavaScript, jQuery, HTML5, CSS, and much more.</description>
    		
    	</image>
    	

    	    		
    		<item>
    		
    			<title>Tabbed Content: Part III, Animated Toggle</title>
    			<link>/blog/tutorials/javascript_development/tabbed_content-animated_toggle</link>
    			<description>Now that we've both &lt;a href="/blog/tutorials/html_development/tabbed_content-layout" title="Tabbed Content: Part I, Layout"&gt;constructed&lt;/a&gt; and &lt;a href="/blog/tutorials/html_development/tabbed_content-applying_style" title="Tabbed Content: Part II, Applying Style"&gt;styled&lt;/a&gt; our content tabs, it's finally time to make it tabable. With a little jQuery, we'll create a simple animation so we can toggle our tabs.</description>
    			<pubDate>Thu, 28 Jun 2012 20:39:31 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/javascript_development/tabbed_content-animated_toggle</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Custom Drop-Down Menu Examples</title>
    			<link>/blog/inspiration/html5/custom_drop-down_menu_examples</link>
    			<description>Default drop-down menus (&lt;i&gt;select&lt;/i&gt;) have no place in modern web design. They're ugly and shameful to any company that is passionate about professionally developing its own brand. Let's check out some websites that do it right.</description>
    			<pubDate>Thu, 28 Jun 2012 14:52:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/inspiration/html5/custom_drop-down_menu_examples</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>CSS Sprites</title>
    			<link>/blog/tutorials/css_design/css_sprites</link>
    			<description>One of the most effective ways of limiting page-load time is to cut down on the amount of images your website uses (and subsequently requests made to the server). What better way to speed up a webpage, than with some CSS image spriting?</description>
    			<pubDate>Wed, 27 Jun 2012 20:39:31 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/css_design/css_sprites</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Create a Function to Check if a Folder is Empty or Not</title>
    			<link>/blog/tutorials/php_development/create_a_function_to_check_if_a_folder_is_empty_or_not</link>
    			<description>At one time or another, as a PHP programmer, you've no doubt needed to check if a directory or folder was empty or not. This PHP tutorial will show you how to accomplish this with a single-line function.</description>
    			<pubDate>Wed, 27 Jun 2012 15:50:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/php_development/create_a_function_to_check_if_a_folder_is_empty_or_not</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Create a Function to Check If User Is a Bot/Spider</title>
    			<link>/blog/tutorials/php_development/check_if_user_is_a_bot_and_spider</link>
    			<description>If you ever need to check if a user/visitor is a bot or spider you can do so by creating this quick php function.</description>
    			<pubDate>Wed, 27 Jun 2012 14:53:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/php_development/check_if_user_is_a_bot_and_spider</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Create a Smart array_merge Function</title>
    			<link>/blog/tutorials/php_development/array_merge_retain</link>
    			<description>PHP's &lt;i&gt;array_merge&lt;/i&gt; function is a perfect way of combining arrays. However, it doesn't properly merge keys (and values) from arrays outside of the first instance. Let's create our own function and fix this issue.</description>
    			<pubDate>Wed, 27 Jun 2012 12:20:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/php_development/array_merge_retain</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Semantics Will Save Us All: Part II, HTML Markup</title>
    			<link>/blog/tutorials/html_development/semantics_will_save_us_all-html_markup</link>
    			<description>With any website you develop, rarely should you ever have to use more than a handful of classes and IDs. With HTML5, there is a plethora of useful elements that will satsify your CSS-Design and HTML-structuring needs.</description>
    			<pubDate>Tue, 26 Jun 2012 20:39:31 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/html_development/semantics_will_save_us_all-html_markup</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Tabbed Content: Part II, Applying Style</title>
    			<link>/blog/tutorials/css_design/tabbed_content-applying_style</link>
    			<description>Recently we &lt;a href="/blog/tutorials/html_development/tabbed_content-layout" title="Tabbed Content: Part I, Layout"&gt;constructed the layout for tabbed content&lt;/a&gt;. In this CSS3 tutorial, and Part II of the Tabbed Content tutorial series, we'll style our tabs and content.</description>
    			<pubDate>Tue, 26 Jun 2012 08:34:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/css_design/tabbed_content-applying_style</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Unique Ordered &amp; Unordered Lists</title>
    			<link>/blog/inspiration/css/unique_ordered_and_unordered_lists_in_web_design</link>
    			<description>If you're dedicated to your brand, why would you not want to incorporate it at every opportunity? Here's some custom examples of ordered and unordered lists for your CSS inspiration.</description>
    			<pubDate>Mon, 25 Jun 2012 14:52:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/inspiration/css/unique_ordered_and_unordered_lists_in_web_design</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Get Organized: Create a Clean File &amp; Folder Structure</title>
    			<link>/blog/tutorials/html_development/get_organized-create_a_clean_file_and_folder_structure</link>
    			<description>Chefs hate a dirty kitchen and web developers hate a cluttered folder structure. Make your life (and your co-developers') easier by organizing your web environment.</description>
    			<pubDate>Sun, 24 Jun 2012 20:39:31 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/html_development/get_organized-create_a_clean_file_and_folder_structure</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Tabbed Content: Part I, Layout</title>
    			<link>/blog/tutorials/html_development/tabbed_content-layout</link>
    			<description>In this three-part tutorial, we'll explore how to create tabbed content, style the navigation to be respectable, and then create an animation to make the whole process pretty.</description>
    			<pubDate>Fri, 22 Jun 2012 17:31:05 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/html_development/tabbed_content-layout</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>How to Create Auto Pop-Up Tabs/Windows for External Links</title>
    			<link>/blog/tutorials/javascript_development/how_to_create_auto_pop-up_tabs_and_windows_for_external_links</link>
    			<description>Ever get sick of having to repeatedly set &lt;i&gt;target out&lt;/i&gt; your various links? Well you should be, the &lt;i&gt;target&lt;/i&gt; attribute is deprecated.  In this tutorial we'll use jQuery to automatically render all external links to open new tabs/windows.</description>
    			<pubDate>Fri, 22 Jun 2012 17:31:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/javascript_development/how_to_create_auto_pop-up_tabs_and_windows_for_external_links</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Semantics Will Save Us All: Part I, CSS Formatting</title>
    			<link>/blog/tutorials/css_design/semantics_will_save_us_all-css_formatting</link>
    			<description>Enough with the hacks, lose the unnecessary stacking, and keep your markup clean. We've all seen it. We've all been guilty of it. It's time to start doing things the right way and simplify your CSS stylesheets.</description>
    			<pubDate>Thu, 21 Jun 2012 17:31:05 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/css_design/semantics_will_save_us_all-css_formatting</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>How to Fix jQuery's Fade In/Out Functions for Internet Explorer</title>
    			<link>/blog/tutorials/javascript_development/fixing_jquery_fade_in_and_out_functions_for_internet_explorer</link>
    			<description>I feel like the world sadly has to keep picking up the slack for Microsoft. Another example is how jQuery's Fade In/Out functions don't look right in Internet Explorer. Weird, right? While we can't send IE to the chopping block, we can create a function to fix this issue.</description>
    			<pubDate>Thu, 21 Jun 2012 17:31:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/blog/tutorials/javascript_development/fixing_jquery_fade_in_and_out_functions_for_internet_explorer</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>National Life Group</title>
    			<link>/portfolio/web/national_life_group</link>
    			<description>National Life Group - Web Portfolio Sample</description>
    			<pubDate>Wed, 04 Jan 2012 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/national_life_group</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Annie’s Pasture</title>
    			<link>/portfolio/web/annies_pasture</link>
    			<description>Annie’s Pasture - Web Portfolio Sample</description>
    			<pubDate>Tue, 01 Nov 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/annies_pasture</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>New England Farms</title>
    			<link>/portfolio/web/new_england_farms</link>
    			<description>New England Farms - Web Portfolio Sample</description>
    			<pubDate>Sat, 01 Oct 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/new_england_farms</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>IEEE Nano 2011</title>
    			<link>/portfolio/web/ieee_nano_2011</link>
    			<description>IEEE Nano 2011 - Web Portfolio Sample</description>
    			<pubDate>Fri, 19 Aug 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/ieee_nano_2011</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Boston University – End of Life Counseling</title>
    			<link>/portfolio/web/boston_university-end_of_life_counseling</link>
    			<description>Boston University – End of Life Counseling - Web Portfolio Sample</description>
    			<pubDate>Mon, 25 Jul 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/boston_university-end_of_life_counseling</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>DK Marine</title>
    			<link>/portfolio/web/dk_marine</link>
    			<description>DK Marine - Web Portfolio Sample</description>
    			<pubDate>Thu, 07 Jul 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/dk_marine</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>HPS Promo Zone – PrimeTime Lacrosse</title>
    			<link>/portfolio/web/hps_promo_zone-primetime_lacrosse</link>
    			<description>HPS Promo Zone – PrimeTime Lacrosse - Web Portfolio Sample</description>
    			<pubDate>Fri, 10 Jun 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/hps_promo_zone-primetime_lacrosse</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>NSB Health Care Convention 2011</title>
    			<link>/portfolio/web/national_school_based_health_care_convention</link>
    			<description>NSB Health Care Convention 2011 - Web Portfolio Sample</description>
    			<pubDate>Fri, 10 Jun 2011 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/national_school_based_health_care_convention</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Boston University – Opioid Prescribing</title>
    			<link>/portfolio/web/boston_university-opioid_prescribing</link>
    			<description>Boston University – Opioid Prescribing - Web Portfolio Sample</description>
    			<pubDate>Tue, 01 Feb 2011 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/boston_university-opioid_prescribing</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Go Pro Workouts</title>
    			<link>/portfolio/web/go_pro_workouts</link>
    			<description>Go Pro Workouts - Web Portfolio Sample</description>
    			<pubDate>Fri, 10 Dec 2010 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/go_pro_workouts</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Door Guard Inc.</title>
    			<link>/portfolio/web/door_guard_inc</link>
    			<description>Door Guard Inc. - Web Portfolio Sample</description>
    			<pubDate>Mon, 15 Nov 2010 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/door_guard_inc</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Door Guard Inc.</title>
    			<link>/portfolio/identity/door_guard_inc</link>
    			<description>Door Guard Inc. - Identity Portfolio Sample</description>
    			<pubDate>Mon, 15 Nov 2010 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/identity/door_guard_inc</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Brattleboro Pharmacy</title>
    			<link>/portfolio/web/brattleboro_pharmacy</link>
    			<description>Brattleboro Pharmacy - Web Portfolio Sample</description>
    			<pubDate>Wed, 01 Sep 2010 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/brattleboro_pharmacy</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Boston University – Dementia Practice Circles</title>
    			<link>/portfolio/web/boston_university-dementia_practice_circles</link>
    			<description>Boston University – Dementia Practice Circles - Web Portfolio Sample</description>
    			<pubDate>Mon, 02 Aug 2010 22:17:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/boston_university-dementia_practice_circles</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Waterbury Pharmacy</title>
    			<link>/portfolio/web/waterbury_pharmacy</link>
    			<description>Waterbury Pharmacy - Web Portfolio Sample</description>
    			<pubDate>Sun, 01 Aug 2010 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/waterbury_pharmacy</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Cabot Cheese – 2010 Recipe Content</title>
    			<link>/portfolio/web/cabot_cheese-2010_recipe_contest</link>
    			<description>Cabot Cheese – 2010 Recipe Content - Web Portfolio Sample</description>
    			<pubDate>Sat, 12 Jun 2010 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/cabot_cheese-2010_recipe_contest</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Anne Wotring</title>
    			<link>/portfolio/web/anne_wotring</link>
    			<description>Anne Wotring - Web Portfolio Sample</description>
    			<pubDate>Sun, 02 May 2010 21:02:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/anne_wotring</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Cabot Cheese – Big Bones Bash</title>
    			<link>/portfolio/web/cabot_cheese-big_bones_bash</link>
    			<description>Cabot Cheese – Big Bones Bash - Web Portfolio Sample</description>
    			<pubDate>Thu, 01 Apr 2010 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/cabot_cheese-big_bones_bash</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Riverstone Resolutions</title>
    			<link>/portfolio/web/rivestone_resolutions</link>
    			<description>Riverstone Resolutions - Web Portfolio Sample</description>
    			<pubDate>Wed, 10 Feb 2010 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/rivestone_resolutions</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>L is for Local</title>
    			<link>/portfolio/web/l_is_for_local</link>
    			<description>L is for Local - Web Portfolio Sample</description>
    			<pubDate>Sun, 10 Jan 2010 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/l_is_for_local</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Montpelier Pharmacy</title>
    			<link>/portfolio/web/montpelier_pharmacy</link>
    			<description>Montpelier Pharmacy - Web Portfolio Sample</description>
    			<pubDate>Sun, 01 Nov 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/montpelier_pharmacy</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Smugglers' Notch Resort</title>
    			<link>/portfolio/web/smugglers_notch_resort</link>
    			<description>Smugglers' Notch Resort - Web Portfolio Sample</description>
    			<pubDate>Thu, 15 Oct 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/smugglers_notch_resort</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Kingdom County Productions</title>
    			<link>/portfolio/web/kingdom_county_productions</link>
    			<description>Kingdom County Productions - Web Portfolio Sample</description>
    			<pubDate>Sat, 10 Oct 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/kingdom_county_productions</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Cabot Cheese – Vermont to Vegas Competitions</title>
    			<link>/portfolio/web/cabot_cheese-vermont_to_vegas</link>
    			<description>Cabot Cheese – Vermont to Vegas Competitions - Web Portfolio Sample</description>
    			<pubDate>Mon, 05 Oct 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/cabot_cheese-vermont_to_vegas</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>The Dog School</title>
    			<link>/portfolio/web/the_dog_school</link>
    			<description>The Dog School - Web Portfolio Sample</description>
    			<pubDate>Thu, 10 Sep 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/the_dog_school</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Boston University – Sleep Practice Circles</title>
    			<link>/portfolio/web/boston_university-sleep_practice_circles</link>
    			<description>Boston University – Sleep Practice Circles - Web Portfolio Sample</description>
    			<pubDate>Fri, 10 Jul 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/boston_university-sleep_practice_circles</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>National Life Group Charitable Foundation</title>
    			<link>/portfolio/web/national_life_group_charitable_foundation</link>
    			<description>National Life Group Charitable Foundation - Web Portfolio Sample</description>
    			<pubDate>Wed, 10 Jun 2009 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/national_life_group_charitable_foundation</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Renewables That Work</title>
    			<link>/portfolio/web/renewables_that_work</link>
    			<description>Renewables That Work - Web Portfolio Sample</description>
    			<pubDate>Thu, 12 Feb 2009 00:00:00 -0500</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/renewables_that_work</guid>
    			
    		</item>
    		
    	    		
    		<item>
    		
    			<title>Cabot Cheese</title>
    			<link>/portfolio/web/cabot_cheese</link>
    			<description>Cabot Cheese - Web Portfolio Sample</description>
    			<pubDate>Sun, 10 Aug 2008 00:00:00 -0400</pubDate>
    			<guid isPermaLink="true">http://www.epochdev.com/portfolio/web/cabot_cheese</guid>
    			
    		</item>
    		
    	
    </channel>
    
</rss>