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>
link|improve this question

69% accept rate
2  
duplicate of this question: stackoverflow.com/questions/30319/… – codecraft Mar 3 '11 at 13:33
feedback

closed as exact duplicate by Phrogz, Quentin, Gabe, Zoidberg, ChrisF Mar 4 '11 at 12:18

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

Use a HTML element with style="display:none", set that to display:block from JavaScript.

Sample code (ugly as hell, but just to give you the idea)

<div id="hideThisFromNonJs" style="display:none">
Bla bla bla
</div>

<script type="text/javascript">
document.getElementById('hideThisFromNonJs').style.display='block';
</script>
link|improve this answer
In general I'm against mixing CSS in your HTML. I can't decide if this is appropriate in this case or not, though. – Phrogz Mar 3 '11 at 13:35
@Phrogz Very valid remark. How about <div class="hidden"> with the hidden class defined as display:none in an external style sheet. The JS would just remove the class. – Sean Patrick Floyd Mar 3 '11 at 13:37
1  
Yup, that'd be good, and more general than your or my current (simpler to implement) answers involving ID only. I do find this answer interesting, though. – Phrogz Mar 3 '11 at 13:40
feedback

I can have a JS block which dynamically writes HTML, but is there a nicer way to do it using some regular HTML?

Unfortunately, no, there isn't. You have to use some form of JavaScript.

I guess you could set up a class or something that is hidden by CSS:

<span class="jsonly">etc</span>

And then you could run something like:

$('.jsonly').show();
link|improve this answer
1  
yes there is ... – Pointy Mar 3 '11 at 13:35
@Pointy The reason I quoted was because I was specifically talking about "using some regular HTML" - I've expanded the answer to avoid confusion – Matt Mar 3 '11 at 13:36
OK, well now that you've modified the answer, it looks like what everybody else is saying :-) - I didn't downvote but now I'll upvote – Pointy Mar 3 '11 at 13:38
feedback
<style type="text/css" media="all">
  #test { display:none }
</style>
...
<a id="test" href="test.com">...</a>
...
<script type="text/javascript">
  document.getElementById('test').style.display = 'inline'; // or 'block', or whatever.
</script>
link|improve this answer
feedback

We appoached this by giving the elements a css class that styles them as display:none and showing it with JS.

link|improve this answer
feedback

Not sure if this is what you are looking for, but if you give the element a style, say "hasjs"

.hasjs{
    display: none;
}

Then remove this with some jQuery.

$('.hasjs').removeClass('hasjs');
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.