Welcome to WebHeadStart.org

Web Technologies

Sponsored By

WebHeadStart.org is currently in beta.
Please pardon our appearance as we work to provide you with the most comprehensive reference on today's web technologies.

Interested in advertising on WebHeadStart? Become an advertising partner today!

[WWW-HTML Mailing List Archive Home] [Messages By Thread] [Messages By Date]

Re: xhtml 2.0 noscript

From: magick <jasper.magick@gmail.com>
Date: Sat, 29 Jul 2006 11:37:37 -0400
To: www-html@w3.org
Message-id: <44CB80C1.100@gmail.com>

You all are [expletive deleted] me off.  In clear and plain English.  YES OR NO.  
Can you use <noscript> in xhtml2?
You still have not answered by questions.  Everytime I write to W3C, my 
topic always gets hijacked and turns into a discussion about something 
else, rather than address the original question, MY question.

**************************************

And here is a very good example why you may want to use it:

Let's say you have this

<a href='javascript:history.go(-1)'>Go back to the page you just left</a>

In your document, well anyone with JavaScript disabled or not supported 
will just get a link that doesn't do anything.  Annoying those people.  
So what do we do, it's simple.

<script type='text/javascript'>
<!--
document.write ("<a href='javascript:history.go(-1)'>Go back to the page you just left<\/a>")
-->
</script>
<noscript><!--NOOP--></noscript>

Now if someone has JS enabled, they'll see the link, if not they see 
nothing.  It's the best of both worlds.
Received on Saturday, 29 July 2006 15:38:03 GMT
Valid XHTML 1.0! Valid CSS! Site Map | Privacy Policy | Terms of Use | WebHeadStart.org © 2005 All Rights Reserved.