<?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>nhaskins.com &#187; studio2108.com</title>
	<atom:link href="http://nhaskins.com/tag/studio2108-com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nhaskins.com</link>
	<description>web development note book</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:44:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>studio 2108 sliding menus vs static for seo</title>
		<link>http://nhaskins.com/post/studio-2108-sliding-menus-vs-static-for-seo/</link>
		<comments>http://nhaskins.com/post/studio-2108-sliding-menus-vs-static-for-seo/#comments</comments>
		<pubDate>Wed, 05 May 2010 20:47:04 +0000</pubDate>
		<dc:creator>Nathan Haskins</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[studio2108.com]]></category>

		<guid isPermaLink="false">http://nhaskins.com/post/studio-2108-sliding-menus-vs-static-for-seo/</guid>
		<description><![CDATA[Sliders are awesome, but are they blocking google from indexing? The idea is to use jQuery to change the links at runtime to # href&#8217;s for &#8216;sliding&#8217;. While the original will remain as static paths to pages. Should work right? google doesn&#8217;t process JS&#8230;. sudo //find any link with the class nav_home, and that have [...]]]></description>
			<content:encoded><![CDATA[<p>Sliders are awesome, but are they blocking google from indexing?  The idea is to use jQuery to change the links at runtime to # href&#8217;s for &#8216;sliding&#8217;.  While the original will remain as static paths to pages.  Should work right? google doesn&#8217;t process JS&#8230;.</p>
<p>sudo</p>
<p>//find any link with the class nav_home, and that have a # in the href value<br />
//store the value in an array, split it into 2, # and string<br />
//save the string value as a var<br />
//replace the value of the href with the string var</p>
<p>ened up going with this kinda of deal:</p>
<pre><code>$(function(){

//swap out the default permalink addresses with anchor jumps

$("li.nav_home&gt;a"     ).attr("href",      "#home");
$("li.nav_about&gt;a"    ).attr("href",     "#about");
$("li.nav_services&gt;a" ).attr("href",  "#services");
$("li.nav_portfolio&gt;a").attr("href", "#portfolio");
$("li.nav_contact&gt;a"  ).attr("href",   "#contact");

});
</code></pre>
<p><a href="http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery" rel="nofollow">http://stackoverflow.com/questions/179713/how-to-change-the-href-for-a-hyperlink-using-jquery</a></p>]]></content:encoded>
			<wfw:commentRss>http://nhaskins.com/post/studio-2108-sliding-menus-vs-static-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

