I'm trying to get the content of a <noscript> tag using Javascript. I succesfully managed to get it in FF, Chrome, Opera and even IE6 but fail on IE7 (haven't tried IE8+ yet).

Basically, here's the reduced code version :

<noscript>Lorem ipsum</noscript>
<script>
    var noscript = document.getElementsByTagName('noscript')[0];
    noscript.textContent; // undefined
    noscript.innerHTML; // empty string
    noscript.childNodes.length; // 0
</script>

I tried adding element inside and targeting them, no success. I tried to wrap in a parent element and getting its .innerHTML, but anything between <noscript> tags is discarded.

Note : I'm building a lazyloader script and the <noscript> element is just what I need (<img> src attributes inside a <noscript> tag are not fetched by the browser.)

link|improve this question

have you tried putting an id to your noscript and and use getElementById? – jerjer Nov 26 '10 at 2:15
Yes, the issue is not selecting the noscript element (it works either with getElementById or getElementsByTagName), it really is accessing the content. – Pixelastic Nov 26 '10 at 2:16
2  
document.getElementsByTagName('script')[0] - you're querying for a script element, not a noscript element. What did I miss? – August Lilleaas Nov 29 '10 at 10:29
Sorry, typo. I really am querying the noscript elements. I fixed that in the initial post. – Pixelastic Nov 29 '10 at 11:46
@Pixelastic: Does the noscript content need to be fully represented as a subtree in the DOM? – Tim Down Nov 29 '10 at 15:42
show 2 more comments
feedback

8 Answers

up vote 11 down vote accepted
+75

In IE 7 and 8, it's simply impossible to retrieve the contents of a <noscript> element. Any content between the <noscript> and </noscript> tags in the HTML is not reflected in the DOM in IE, the element has no children and innerHTML and innerText are empty strings.

In IE 6, the situation is curious: in common with IE 7, the <noscript> element has no child nodes but its contents are reflected in the innerHTML and outerHTML (but not innerText) properties of the element.

All this being the case, your only option in IE is to put the content in your <noscript> element inside some other element instead. To emulate the behaviour of a <noscript> element, you could put the content in an element that is immediately hidden by JavaScript (when script is enabled):

<div id="noscript">Lorem ipsum</div>
<script type="text/javascript">
    document.getElementById("noscript").style.display = "none";
</script>
link|improve this answer
1  
^ This. It's pretty absolute - no DOM, no data. – annakata Nov 29 '10 at 11:45
Actually, you can get the content of a noscript in IE6 with .innerHTML, but not in IE7 – Pixelastic Nov 29 '10 at 11:48
@Pixelastic: textContent doesn't exist in IE6, but you're right that innerHTML does contain the content. I've amended my answer. – Tim Down Nov 29 '10 at 11:56
1  
Instead of using a <div>, try using <script type="text/html">. This won't execute (because text/html isn't a known "scripting language"), nor will it be built into a DOM fragment (so images, etc. won't be loaded), but it will be available as a text node (.innerText / .textContent). – Ben Blank Dec 7 '10 at 0:24
2  
@Ben: You're right, and this was what I was trying to get at when I asked in my comment to the question *"Does the noscript content need to be fully represented as a subtree in the DOM?" but realised that this doesn't fulfill the requirements: the content has to be rendered when JavaScript is disabled, which it wouldn't be in your solution. It can only be turned into DOM nodes when JavaScript is enabled, which is precisely the wrong way round. – Tim Down Dec 7 '10 at 0:40
show 5 more comments
feedback

One work around for this is to duplicate the content of noscript as its attribute.

For example:

<noscript id="ns" alt="Lorem ipsulum">Lurem ipsulum</noscript>

On the script get the value of alt attribute instead of its innerHTML

<script>
   var ns = document.getElementByid('ns');
   var htm = ns.innerHTML || ns.getAttribute('alt');

   alert(htm);

</script> 
link|improve this answer
That is one ugly workaround! Why does IE do this to use... :( – alex Nov 26 '10 at 3:34
This could be a useful workaround, but unfortunatly not in my case. I oversimplified my example but my real code contains hundreds of HTML lines in the <noscript> – Pixelastic Nov 26 '10 at 9:35
feedback

I think IE has issues accessing the noscript element.

I'm not sure what you could do - can you display the content and then hide it with script on DOM ready, creating a faux noscript style element?

link|improve this answer
1  
I wonder what percentage of questions in Stack Overflow have this kind of brick-wall-caused-by-IE answer... :( – cambraca Nov 26 '10 at 1:22
@cambraca Just a few... :P I remember reading recently that IE has problems with noscript and the DOM. I'm on OS X here so I can't test. – alex Nov 26 '10 at 1:24
That was indeed the point of my question. If anyone had already screamed and lost some hair against this issue, any workaround would be greatly appreciated :) – Pixelastic Nov 26 '10 at 1:30
To answer your question : I can't do that because if I put the content in anything but a <noscript>, it gets evaluated -even if hidden- and <img> gets loaded in the background. That is exactly what I tried to avoid : I want the html content to be present in my markup but being able to "activate" it only on demand. – Pixelastic Nov 26 '10 at 9:34
feedback

You're querying the script elements instead of the noscript elements, This works in all browsers:

<noscript>Lorem ipsum</noscript>
<script>
    var noscript = document.getElementsByTagName('noscript')[0];
    alert(noscript.innerHTML); // Lorem ipsum
</script>
link|improve this answer
No it doesn't: try it in IE7, for example. – Tim Down Nov 29 '10 at 11:22
Oh. That was a typo, I really was querying the noscript elements. I updated my initial post. The innerHTML is still empty, btw. (And I wanted to up your response, but I have put too much points in the bounty and can't even up response anymore -_-) – Pixelastic Nov 29 '10 at 11:44
My bad, I tested in IE6, firefox and chrome. – I.devries Nov 29 '10 at 11:54
feedback

I don't have an ie browser on me at the moment ;) but as far as I remember the content of a <noscript> tag is avaliable when you get its parent tag's .innerHTML(). Then it's up to you to get it out (with a nasty regexp for example)

I can't test it for at least 7 hours from now, so I post this info as is.

PS. My advice is to redesign. Noscript tags are ment to contain stuff that is NOT used when scripts are on.

link|improve this answer
I'm going to test your solution, that may work. And I'm understanding the noscript tag with a subtle difference : I think it is used to DISPLAY stuff when scripts are OFF. But I agree the subject is open to discussions. – Pixelastic Dec 2 '10 at 16:57
I just tried, and your solution does not work either. I got a <NOSCRIPT></NOSCRIPT> for the .innerHTML and a <DIV id=test><NOSCRIPT></NOSCRIPT></DIV> for the .outerHTML. Any content inside the <noscript> tags seems to get discarded from the DOM early – Pixelastic Dec 2 '10 at 17:10
feedback

This is a really dirty hack, and completely untested but i just had the idea :D

You could do as others have suggested, put the content in a div rather than a noscript, and in addition to hiding it, immediately remove the src attribute of all the img tags using something to the effect of:

jQuery(function () { 
    jQuery('div#noscript img').attr('src', '');
  });

This should limit (but not eliminate) the fetching of images.

This is just a though based on comments and the suggestions of others, hope it helps.


Edit - another dirty hack i've just thought of, which assumes that you can change where the html lives, so may or may not be relevant:

Inside the noscript have a

<iframe width="100%" height="100%" src="?noscript=true" />

then you can XMLHttpRequest for the noscript content...

link|improve this answer
Actually, this is how most of the lazyloader scripts works today. This is absolutly not cross-browser (removing the src elements will stop the request on some browsers only) and will only mitigate the image loading on image-heavy pages, anyway. – Pixelastic Dec 6 '10 at 10:24
feedback

You could

<script>document.write('<script id="images" type="text/html">')</script>

just before the images and then

<script>document.write('</scr'+'ipt>')</script>

after it. You'd have the images available without javascript, and with JavaScript there, you'd have their sources at your disposal in $('images').innerHTML

link|improve this answer
feedback

Not the most elegant solution - Images load as normal with IE7 and IE8, and all other browsers get the added benefit of lazi loading. You will end up with some empty comment blocks in the final output... but who cares, right?

<!--[if (gt IE 8)|!(IE)]><!--><noscript><!--<![endif]-->
  <img src="/path/to/img.jpg" alt="photo" />
<!--[if (gt IE 8)|!(IE)]><!--></noscript><!--<![endif]-->

JavaScript (jQuery - if you need real JS let me know):

jQuery(function($) {
  $('noscript').each(function() {
    var $this = $(this);
    $this.replaceWith($this.text());
  });
});

Tested with IE7+, Chrome, FF3.6+, Opera11

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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