Possible Duplicate:
Is there a html opposite to noscript
<noscript>
makes it easy to have HTML code as a fallback if JS is disabled... but what if I want to have HTML code which is only shown when scripts are enabled? I can have a JS block which dynamically writes HTML, but is there a nicer way to do it using some regular HTML?
let's say I have a link:
<a href="test.com">This should only appear if Javascript is enabed</a>