- From: Steven Pemberton <steven.pemberton@cwi.nl>
- Date: Tue, 25 Jul 2006 12:40:32 +0200
- To: "Johannes Koch" <koch@w3development.de>, www-html@w3.org
On Mon, 24 Jul 2006 19:24:30 +0200, Johannes Koch <koch@w3development.de>
wrote:
> I think, whether you need an alternative (noscript) for the scripting
> depends on what is done in the script. If essential functionality is
> added via scripting, a noscript alternative _is_ needed.
Here is an example of how to do it without noscript (there are others).
<noscript> is only needed when document.write is used.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>No script alternative</title>
<style type="text/css">
.secret {display: none}
</style>
<script type="text/javascript">
function go() {
document.getElementById('noscript').className="secret";
document.getElementById('hasscript').className="public";;
return true;
}
</script>
</head>
<body onload='go();'>
<h1>A noscript alternative</h1>
<p id='noscript'>This document has no script</p>
<p id='hasscript' class='secret'>This document has script</p>
</body>
</html>
Steven
Received on Tuesday, 25 July 2006 10:41:05 UTC