Possible Duplicate:
opposite of <noscript>
I have a static html page as following:
<head>
<noscript>Please Enable JavaScript</noscript>
</head>
<body>
<br />
HELLO
</body>
This will prompt the user to enable Javascript. But "HELLO" is getting displayed no matter whether JavaScript is disabled or enabled. I want "HELLO" to get displayed if JavaScript is enabled and want the prompt to appear and "HELLO" to hide when JavaScript is disabled. It will be better if it is a cross-browser solution. How can I do this?