<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Unobtrusive Dropdown Page Changer</title>
	<atom:link href="http://css-tricks.com/unobtrusive-page-changer/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/unobtrusive-page-changer/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Fri, 24 May 2013 13:06:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: mike foskett</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-63084</link>
		<dc:creator>mike foskett</dc:creator>
		<pubDate>Mon, 19 Oct 2009 13:06:17 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-63084</guid>
		<description><![CDATA[Sorry Chris I personally think this is the worst article I&#039;ve read on CSS Tricks.

You appear to be endorsing a very poor practice by example.

At the very least remove the onchange behaviour and get that &quot;go&quot; button out of the noscript. 
That&#039;d make it at least usable to most people.]]></description>
		<content:encoded><![CDATA[<p>Sorry Chris I personally think this is the worst article I&#8217;ve read on CSS Tricks.</p>
<p>You appear to be endorsing a very poor practice by example.</p>
<p>At the very least remove the onchange behaviour and get that &#8220;go&#8221; button out of the noscript.<br />
That&#8217;d make it at least usable to most people.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-63030</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 16 Oct 2009 20:05:54 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-63030</guid>
		<description><![CDATA[This would be one way:

&lt;pre&gt;&lt;code&gt;$dropdown_nav = array(&quot;http://www.google.com&quot;,&quot;http://www.css-tricks.com&quot;,&quot;http://www.yahoo.com&quot;);

if ($_GET[&#039;page_nav&#039;] &amp;&amp; in_array($_GET[&#039;page_nav&#039;],$dropdown_nav)) {
	header(&quot;Location:&quot;.$_GET[&#039;page_nav&#039;]);
        exit();
}

// Loop through the array as an option to select form here&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>This would be one way:</p>
<pre><code>$dropdown_nav = array("http://www.google.com","http://www.css-tricks.com","http://www.yahoo.com");

if ($_GET['page_nav'] &amp;&amp; in_array($_GET['page_nav'],$dropdown_nav)) {
	header("Location:".$_GET['page_nav']);
        exit();
}

// Loop through the array as an option to select form here</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendrik</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-62046</link>
		<dc:creator>Hendrik</dc:creator>
		<pubDate>Fri, 25 Sep 2009 08:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-62046</guid>
		<description><![CDATA[Thank you Chris!]]></description>
		<content:encoded><![CDATA[<p>Thank you Chris!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Coyier</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-62043</link>
		<dc:creator>Chris Coyier</dc:creator>
		<pubDate>Fri, 25 Sep 2009 02:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-62043</guid>
		<description><![CDATA[Sent in via Hendrik Walter

This is a way to combine the obtrusive method with the PHP stuff to make it work the same way, only without jQuery:

&lt;pre style=&quot;overflow: auto;&quot;&gt;&lt;form action=&quot;&quot; method=&quot;post&quot;&gt;
    &lt;select name=&quot;nav&quot; onchange=&quot;window.open(this.options[this.selectedIndex].value)&quot;&gt;
        &lt;option value=&quot;&quot;&gt;Go to page...&lt;/option&gt;
        &lt;option value=&quot;http://css-tricks.com/&quot;&gt;CSS-Tricks&lt;/option&gt;
        &lt;option value=&quot;http://digwp.com/&quot;&gt;Digging Into WordPress&lt;/option&gt;
        &lt;option value=&quot;http://quotesondesign.com/&quot;&gt;Quotes on Design&lt;/option&gt;
    &lt;/select&gt;
    &lt;noscript&gt;
        &lt;input type=&quot;submit&quot; value=&quot;Go&quot; id=&quot;submit&quot; /&gt;
    &lt;/noscript&gt;
&lt;/form&gt;

&lt;?php
        if (isset($_POST[&#039;nav&#039;])) {
                // you should validate $_POST[nav] here
                header(&quot;Location: $_POST[nav]&quot;);
        }
?&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Sent in via Hendrik Walter</p>
<p>This is a way to combine the obtrusive method with the PHP stuff to make it work the same way, only without jQuery:</p>
<pre style="overflow: auto;">&lt;form action=&quot;&quot; method=&quot;post&quot;&gt;
    &lt;select name=&quot;nav&quot; onchange=&quot;window.open(this.options[this.selectedIndex].value)&quot;&gt;
        &lt;option value=&quot;&quot;&gt;Go to page...&lt;/option&gt;
        &lt;option value=&quot;<a href="http://css-tricks.com/&quot;&gt;CSS-Tricks&lt;/option&#038;gt" rel="nofollow">http://css-tricks.com/&quot;&gt;CSS-Tricks&lt;/option&#038;gt</a>;
        &lt;option value=&quot;<a href="http://digwp.com/&quot;&gt;Digging" rel="nofollow">http://digwp.com/&quot;&gt;Digging</a> Into WordPress&lt;/option&gt;
        &lt;option value=&quot;<a href="http://quotesondesign.com/&quot;&gt;Quotes" rel="nofollow">http://quotesondesign.com/&quot;&gt;Quotes</a> on Design&lt;/option&gt;
    &lt;/select&gt;
    &lt;noscript&gt;
        &lt;input type=&quot;submit&quot; value=&quot;Go&quot; id=&quot;submit&quot; /&gt;
    &lt;/noscript&gt;
&lt;/form&gt;

&lt;?php
        if (isset($_POST[&#39;nav&#39;])) {
                // you should validate $_POST[nav] here
                header(&quot;Location: $_POST[nav]&quot;);
        }
?&gt;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guna</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61626</link>
		<dc:creator>Guna</dc:creator>
		<pubDate>Fri, 18 Sep 2009 08:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61626</guid>
		<description><![CDATA[yeah..this dude really can read our mind...thx Dude...]]></description>
		<content:encoded><![CDATA[<p>yeah..this dude really can read our mind&#8230;thx Dude&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laars</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61609</link>
		<dc:creator>Laars</dc:creator>
		<pubDate>Thu, 17 Sep 2009 21:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61609</guid>
		<description><![CDATA[This is a misuse of POST; it should use GET instead.]]></description>
		<content:encoded><![CDATA[<p>This is a misuse of POST; it should use GET instead.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jones</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61593</link>
		<dc:creator>Jones</dc:creator>
		<pubDate>Thu, 17 Sep 2009 14:47:55 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61593</guid>
		<description><![CDATA[Great job Chris. Thanks]]></description>
		<content:encoded><![CDATA[<p>Great job Chris. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arsalan</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61590</link>
		<dc:creator>Arsalan</dc:creator>
		<pubDate>Thu, 17 Sep 2009 14:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61590</guid>
		<description><![CDATA[your blog is so cool! i am seeking ways to promote my blog. this is especially helpful. please visit my blog.
www.ishtihari.blogspot.com]]></description>
		<content:encoded><![CDATA[<p>your blog is so cool! i am seeking ways to promote my blog. this is especially helpful. please visit my blog.<br />
<a href="http://www.ishtihari.blogspot.com" rel="nofollow">http://www.ishtihari.blogspot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarfraz Ahmed</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61579</link>
		<dc:creator>Sarfraz Ahmed</dc:creator>
		<pubDate>Thu, 17 Sep 2009 10:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61579</guid>
		<description><![CDATA[nice way to do it, thanks for sharing :)]]></description>
		<content:encoded><![CDATA[<p>nice way to do it, thanks for sharing :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helen</title>
		<link>http://css-tricks.com/unobtrusive-page-changer/#comment-61559</link>
		<dc:creator>Helen</dc:creator>
		<pubDate>Wed, 16 Sep 2009 19:30:10 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=4064#comment-61559</guid>
		<description><![CDATA[James, if the links inside the form would be ignored by search engines, millions of websites would not be in the index. Spidering a page made by Dreamweaver is harder than ruling Afghanistan. It contains hardly anything what we call HTML. It is a hell of click-events. What I wanna say: 
If there&#039;s a link, Google gets it.]]></description>
		<content:encoded><![CDATA[<p>James, if the links inside the form would be ignored by search engines, millions of websites would not be in the index. Spidering a page made by Dreamweaver is harder than ruling Afghanistan. It contains hardly anything what we call HTML. It is a hell of click-events. What I wanna say:<br />
If there&#8217;s a link, Google gets it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-24 06:08:14 by W3 Total Cache -->