<?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"
	>
<channel>
	<title>Comments on: No noscript, m&#8217;kay?</title>
	<atom:link href="http://www.robertnyman.com/2005/07/01/no-noscript-mkay/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/</link>
	<description>Web development and Internet trends</description>
	<pubDate>Fri, 05 Dec 2008 09:12:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Giant Geek Blog &#187; Blog Archive &#187; Accessible alternative to NOSCRIPT</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-472823</link>
		<dc:creator>Giant Geek Blog &#187; Blog Archive &#187; Accessible alternative to NOSCRIPT</dc:creator>
		<pubDate>Wed, 12 Nov 2008 06:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-472823</guid>
		<description>[...] http://www.robertnyman.com/2005/07/01/no-noscript-mkay/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.robertnyman.com/2005/07/01/no-noscript-mkay/" rel="nofollow">http://www.robertnyman.com/2005/07/01/no-noscript-mkay/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loque</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-379752</link>
		<dc:creator>Loque</dc:creator>
		<pubDate>Mon, 18 Aug 2008 21:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-379752</guid>
		<description>Just found a solution, thanks to

http://www.nabble.com/jQuery-General-Discussion-f15494.html

which linked me through to

http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/

It also highlighted to me that you could fire off an event before the dom is ready anyway... and that this is probably the safest method for doing this(?). I love jQuery :¬</description>
		<content:encoded><![CDATA[<p>Just found a solution, thanks to</p>
<p><a href="http://www.nabble.com/jQuery-General-Discussion-f15494.html" rel="nofollow">http://www.nabble.com/jQuery-General-Discussion-f15494.html</a></p>
<p>which linked me through to</p>
<p><a href="http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/" rel="nofollow">http://www.thunderguy.com/semicolon/2007/08/14/elementready-jquery-plugin/</a></p>
<p>It also highlighted to me that you could fire off an event before the <acronym title="Document Object Model">DOM</acronym> is ready anyway&#8230; and that this is probably the safest method for doing this(?). I love jQuery :¬</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loque</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-358464</link>
		<dc:creator>Loque</dc:creator>
		<pubDate>Wed, 30 Jul 2008 15:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-358464</guid>
		<description>I completely agree with this article although what happens when you want to animate items on and off the page *and* you dont want it to flicker on load (whilst JS waits for the dom to be ready before then hiding your elements for use with JS)... 

One (bad) method would be to hide the elements using 'display none' in the CSS doc and then reveal the items when required but then this wouldnt work for non JS users, not atleast without a noscrpt tag to make sure these elements werent hidden with no JS.

sooo..... :¬)</description>
		<content:encoded><![CDATA[<p>I completely agree with this article although what happens when you want to animate items on and off the page *and* you dont want it to flicker on load (whilst JS waits for the <acronym title="Document Object Model">DOM</acronym> to be ready before then hiding your elements for use with JS)&#8230; </p>
<p>One (bad) method would be to hide the elements using &#8216;display none&#8217; in the <acronym title="Cascading Style Sheets">CSS</acronym> doc and then reveal the items when required but then this wouldnt work for non JS users, not atleast without a noscrpt tag to make sure these elements werent hidden with no JS.</p>
<p>sooo&#8230;.. :¬)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorren Biffin</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-102630</link>
		<dc:creator>Lorren Biffin</dc:creator>
		<pubDate>Tue, 11 Sep 2007 18:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-102630</guid>
		<description>These are all valid points. However, I'd like to throw in my two cents.

Our jobs as web developers are made more difficult with every technology update that rolls around, which is quite often. I don't see any reason we need to cater to every 0.02% of users that have some fluke of a scenario destroy out web pages. Sure, it's a scary thought... but from a time/money/productivity standpoint, even us perfectionists have to let good be good enough.

As far as the noscript tag, there's one reason not to use it, and one reason when it's very useful.

The reason not to use the noscript tag would be when the JS dependent feature is part of the functionality of the page. In that case, simply displaying text is (in my opinion) a bad idea. When coding your pages initially, you should code for the lower percentage of non-js users. Although this percentage is low, it's big enough to account for. Then, code your JS around the HTML/CSS as it is. JS is very good for this.

The scenario the noscript tag works well with is when using JS for display/effects. If your user doesn't have JS enabled, the effects wont show...hence, you could benefit from linking to a style sheet inside a noscript tag with styles comparable to the JS styles and effects.

Well, I'm getting a bit busy now, but I'm glad I toss my opinion out there.

-Lorren</description>
		<content:encoded><![CDATA[<p>These are all valid points. However, I&#8217;d like to throw in my two cents.</p>
<p>Our jobs as web developers are made more difficult with every technology update that rolls around, which is quite often. I don&#8217;t see any reason we need to cater to every 0.02% of users that have some fluke of a scenario destroy out web pages. Sure, it&#8217;s a scary thought&#8230; but from a time/money/productivity standpoint, even us perfectionists have to let good be good enough.</p>
<p>As far as the noscript tag, there&#8217;s one reason not to use it, and one reason when it&#8217;s very useful.</p>
<p>The reason not to use the noscript tag would be when the JS dependent feature is part of the functionality of the page. In that case, simply displaying text is (in my opinion) a bad idea. When coding your pages initially, you should code for the lower percentage of non-js users. Although this percentage is low, it&#8217;s big enough to account for. Then, code your JS around the <acronym title="HyperText Markup Language">HTML</acronym>/CSS as it is. JS is very good for this.</p>
<p>The scenario the noscript tag works well with is when using JS for display/effects. If your user doesn&#8217;t have JS enabled, the effects wont show&#8230;hence, you could benefit from linking to a style sheet inside a noscript tag with styles comparable to the JS styles and effects.</p>
<p>Well, I&#8217;m getting a bit busy now, but I&#8217;m glad I toss my opinion out there.</p>
<p>-Lorren</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Jansson</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-35797</link>
		<dc:creator>Martin Jansson</dc:creator>
		<pubDate>Wed, 14 Feb 2007 14:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-35797</guid>
		<description>Yet another argument against using &lt;code&gt;noscript&lt;/code&gt; is that if you have javascript turned on and for some reason don't get the requested .js-file, you'll end up with neither the noscript-content, nor the js-generated content. Reasons for this might be an error on the server preventing the js-file to be delivered, or if you're located behind a firewall blocking certain files.

So doing as Robert says, putting the content in regular &lt;code&gt;P&lt;/code&gt;'s and &lt;code&gt;DIV&lt;/code&gt;'s and hiding it with javascript will prevent this.</description>
		<content:encoded><![CDATA[<p>Yet another argument against using <code>noscript</code> is that if you have javascript turned on and for some reason don&#8217;t get the requested .js-file, you&#8217;ll end up with neither the noscript-content, nor the js-generated content. Reasons for this might be an error on the server preventing the js-file to be delivered, or if you&#8217;re located behind a firewall blocking certain files.</p>
<p>So doing as Robert says, putting the content in regular <code>P</code>&#8217;s and <code>DIV</code>&#8217;s and hiding it with javascript will prevent this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Prugh</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-32029</link>
		<dc:creator>Jonathan Prugh</dc:creator>
		<pubDate>Wed, 31 Jan 2007 22:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-32029</guid>
		<description>Another argument against using the  tag is that some user agents may have partial support for JavaScript. 

So, these agents will not display the  content, but may choke on more advanced dom scripting techniques.

Best to display the alternate content then hide it with javascript after testing for object compatiblity.</description>
		<content:encoded><![CDATA[<p>Another argument against using the  tag is that some user agents may have partial support for JavaScript. </p>
<p>So, these agents will not display the  content, but may choke on more advanced <acronym title="Document Object Model">DOM</acronym> scripting techniques.</p>
<p>Best to display the alternate content then hide it with javascript after testing for object compatiblity.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-12411</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Sat, 14 Oct 2006 11:44:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-12411</guid>
		<description>Tom,

Yes, just some DOM replacement will do the trick.</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>Yes, just some <acronym title="Document Object Model">DOM</acronym> replacement will do the trick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Taylor</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-12340</link>
		<dc:creator>Tom Taylor</dc:creator>
		<pubDate>Fri, 13 Oct 2006 22:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-12340</guid>
		<description>Bit tricky when you want top use noscript tags for an alternative image tracking how many hits your site receives.

Easily overcome though by making the DOM attack it, remove it, and replace with javascript instead ;)</description>
		<content:encoded><![CDATA[<p>Bit tricky when you want top use noscript tags for an alternative image tracking how many hits your site receives.</p>
<p>Easily overcome though by making the <acronym title="Document Object Model">DOM</acronym> attack it, remove it, and replace with javascript instead <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-7978</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Thu, 31 Aug 2006 09:56:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-7978</guid>
		<description>Ray,

No problem. :-)</description>
		<content:encoded><![CDATA[<p>Ray,</p>
<p>No problem. <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-7977</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Thu, 31 Aug 2006 09:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-7977</guid>
		<description>Duh.. OK, I'm convinced. That's obviously the right way to solve this elegantly. Thanks for the hint!</description>
		<content:encoded><![CDATA[<p>Duh.. OK, I&#8217;m convinced. That&#8217;s obviously the right way to solve this elegantly. Thanks for the hint!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-7931</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 30 Aug 2006 18:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-7931</guid>
		<description>Ray,

If I'm not totally missing something here, why don't just have the paragraph that's intended there for non-JavaScript users in the original source (without &lt;code&gt;noscript&lt;/code&gt; tags), and then just replace that with JavaScript for those with the necessary support?</description>
		<content:encoded><![CDATA[<p>Ray,</p>
<p>If I&#8217;m not totally missing something here, why don&#8217;t just have the paragraph that&#8217;s intended there for non-JavaScript users in the original source (without <code>noscript</code> tags), and then just replace that with JavaScript for those with the necessary support?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-7926</link>
		<dc:creator>Ray</dc:creator>
		<pubDate>Wed, 30 Aug 2006 17:46:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-7926</guid>
		<description>What about this scenario (very simple example):

I manipulate the DOM to insert, say, a paragraph with some "help" text at a certain position. That is, the paragraph is not part of the original source, but is created and added when the user clicks on a certain link/button ("Click here for help blabla").
All this is done nicely without inline JavaScript. So far, so good.
But if the user/client has no JS, I want that paragraph to be there. The only solution I see is: put it in &lt;code&gt;noscript&lt;/code&gt;.

Note: The link/button that triggers the creation of the element is itself also a creation of DOM scripting. That way, with JS &lt;strong&gt;on&lt;/strong&gt;, this works as expected and with JS &lt;strong&gt;off&lt;/strong&gt; the user still sees the paragraph (and doesn't see the trigger link/button, which would obviously be useless).

How could one pull something like this off &lt;em&gt;without&lt;/em&gt; &lt;code&gt;noscript&lt;/code&gt;? I totally agree with the basic statement in your post, but in a case like this example, it seems to make sense. Unless I'm doing something wrong :).</description>
		<content:encoded><![CDATA[<p>What about this scenario (very simple example):</p>
<p>I manipulate the <acronym title="Document Object Model">DOM</acronym> to insert, say, a paragraph with some &#8220;help&#8221; text at a certain position. That is, the paragraph is not part of the original source, but is created and added when the user clicks on a certain link/button (&#8221;Click here for help blabla&#8221;).<br />
All this is done nicely without inline JavaScript. So far, so good.<br />
But if the user/client has no JS, I want that paragraph to be there. The only solution I see is: put it in <code>noscript</code>.</p>
<p>Note: The link/button that triggers the creation of the element is itself also a creation of <acronym title="Document Object Model">DOM</acronym> scripting. That way, with JS <strong>on</strong>, this works as expected and with JS <strong>off</strong> the user still sees the paragraph (and doesn&#8217;t see the trigger link/button, which would obviously be useless).</p>
<p>How could one pull something like this off <em>without</em> <code>noscript</code>? I totally agree with the basic statement in your post, but in a case like this example, it seems to make sense. Unless I&#8217;m doing something wrong :).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Greut &#187; Webstandaarden verkeerd begrepen</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-6121</link>
		<dc:creator>CSS Greut &#187; Webstandaarden verkeerd begrepen</dc:creator>
		<pubDate>Thu, 20 Jul 2006 20:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-6121</guid>
		<description>[...] dat ze regelmatig een zwart-wit stelling poneren en iedere nuance missen. Al eerder had ik ruzie met een Zweed die het geldige HTML-element noscript wilde afschaffen.Nu stuit op ee [...]</description>
		<content:encoded><![CDATA[<p>[...] dat ze regelmatig een zwart-wit stelling poneren en iedere nuance missen. Al eerder had ik ruzie met een Zweed die het geldige <acronym title="HyperText Markup Language">HTML</acronym>-element noscript wilde afschaffen.Nu stuit op ee [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-626</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 06 Jul 2005 11:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-626</guid>
		<description>No problem!
Thanks for making me explain my standpoint more thoroughly!</description>
		<content:encoded><![CDATA[<p>No problem!<br />
Thanks for making me explain my standpoint more thoroughly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Greuter</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-625</link>
		<dc:creator>Tom Greuter</dc:creator>
		<pubDate>Wed, 06 Jul 2005 11:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-625</guid>
		<description>If it's a question of maintainability, in some cases you may be right, in others maybe not. Anyway, I will consider your approach when I'll face this problem. Thank you for your quick response!</description>
		<content:encoded><![CDATA[<p>If it&#8217;s a question of maintainability, in some cases you may be right, in others maybe not. Anyway, I will consider your approach when I&#8217;ll face this problem. Thank you for your quick response!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-624</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 06 Jul 2005 11:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-624</guid>
		<description>Tom,

You're putting pressure on me here!  :-)
Why not use the &lt;code&gt;noscript&lt;/code&gt; tag?

Basically, it's a matter of approach. I personally think the best way is to handle it from an external script, as opposed to having an extra element in the source code.

I guess it might also be a matter of changing it later on, if you have many different pages. Instead of removing &lt;code&gt;noscript&lt;/code&gt; tags in several places, you just change the script.</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>You&#8217;re putting pressure on me here!  <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
Why not use the <code>noscript</code> tag?</p>
<p>Basically, it&#8217;s a matter of approach. I personally think the best way is to handle it from an external script, as opposed to having an extra element in the source code.</p>
<p>I guess it might also be a matter of changing it later on, if you have many different pages. Instead of removing <code>noscript</code> tags in several places, you just change the script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Greuter</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-620</link>
		<dc:creator>Tom Greuter</dc:creator>
		<pubDate>Wed, 06 Jul 2005 09:31:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-620</guid>
		<description>Robert, I do agree with you on the small amount of people not using javascript, and I think it's valid to ask yourself if you have to put much time in satifying this small group extensively (good can be good enough).

However, I don't see any argument in favour of not using the &lt;code&gt;noscript&lt;/code&gt; tag. ;)</description>
		<content:encoded><![CDATA[<p>Robert, I do agree with you on the small amount of people not using javascript, and I think it&#8217;s valid to ask yourself if you have to put much time in satifying this small group extensively (good can be good enough).</p>
<p>However, I don&#8217;t see any argument in favour of not using the <code>noscript</code> tag. <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-617</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 06 Jul 2005 09:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-617</guid>
		<description>Tom,

Thanks for the questions!  :-)

They're valid and I guess I have to say that, to me, it comes down to development time and maintenance. Most web site visitors have a web browser that supports JavaScript and have it enabled.

Hence, you want to use JavaScript to enhance their experience, but you still don't want to loose any major functionality so you use unobtrusive JavaScript.

What this means is that even if you do cater to the people where JavaScript isn't an option, the fallback is normally not as advanced as the JavaScript alternative, usually just some text or so.

Normally, the percentage of visitors without JavaScript are as small part of it, so it's hard to justify the time and money needed to include an equally advanced improvement.

I hope my answer was satisfactory!  :-)</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>Thanks for the questions!  <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>They&#8217;re valid and I guess I have to say that, to me, it comes down to development time and maintenance. Most web site visitors have a web browser that supports JavaScript and have it enabled.</p>
<p>Hence, you want to use JavaScript to enhance their experience, but you still don&#8217;t want to loose any major functionality so you use unobtrusive JavaScript.</p>
<p>What this means is that even if you do cater to the people where JavaScript isn&#8217;t an option, the fallback is normally not as advanced as the JavaScript alternative, usually just some text or so.</p>
<p>Normally, the percentage of visitors without JavaScript are as small part of it, so it&#8217;s hard to justify the time and money needed to include an equally advanced improvement.</p>
<p>I hope my answer was satisfactory!  <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Greuter</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-614</link>
		<dc:creator>Tom Greuter</dc:creator>
		<pubDate>Wed, 06 Jul 2005 08:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-614</guid>
		<description>I don't see the difference between the second and third approach. Why should you use javascript to hide alternatives for javascript, when we have an excellent element that will in fact do the same: &lt;code&gt;noscript&lt;/code&gt;?

Of course, you won't use the &lt;code&gt;noscript&lt;/code&gt;-element to display just text alternatives, but instead to provide a serious non-javascript alternative.

If javascript must be unobtrusive, then why use javascript at all? If your unobtrusive javascript nevertheless improves (progressive enhances) your site, then why not try to provide an (more or less) equal improvement with &lt;code&gt;noscript&lt;/code&gt;?

I know these discussions run elsewhere too, but I'm curious to your point of view.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t see the difference between the second and third approach. Why should you use javascript to hide alternatives for javascript, when we have an excellent element that will in fact do the same: <code>noscript</code>?</p>
<p>Of course, you won&#8217;t use the <code>noscript</code>-element to display just text alternatives, but instead to provide a serious non-javascript alternative.</p>
<p>If javascript must be unobtrusive, then why use javascript at all? If your unobtrusive javascript nevertheless improves (progressive enhances) your site, then why not try to provide an (more or less) equal improvement with <code>noscript</code>?</p>
<p>I know these discussions run elsewhere too, but I&#8217;m curious to your point of view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Nyman</title>
		<link>http://www.robertnyman.com/2005/07/01/no-noscript-mkay/#comment-612</link>
		<dc:creator>Robert Nyman</dc:creator>
		<pubDate>Wed, 06 Jul 2005 07:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.robertnyman.com/?p=108#comment-612</guid>
		<description>&lt;blockquote&gt;If you find yourself using noscript, you should take a step back and consider if there really is no other way.&lt;/blockquote&gt;

Then we agree on that at least!  :-)</description>
		<content:encoded><![CDATA[<blockquote><p>If you find yourself using noscript, you should take a step back and consider if there really is no other way.</p></blockquote>
<p>Then we agree on that at least!  <img src='http://www.robertnyman.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
