Page 1 of 1

<noscript> tag

Posted: Sat Apr 11, 2009 9:14 pm
by daego
I am trying to have my site show a friendly message in place of an embedded Google Maps tool in my site. I have the following code:

Code: Select all

<div id="map">
 <noscript>
  Our map requires JavaScript to navigate visually. Please use the following links to navigate:
  <a href="blah">blah</a> ...
 </noscript>
<div>
It works fine when I fully disable JavaScript in my browser. However, when I use NoScript to disable scripts, it does not show. Is that intentional? I like my site to be as friendly to all users as possible and provide alternate means of navigation.

(The links are repeated elsewhere on the page as well, so if this can't be fixed, I won't cry too hard.)

Re: <noscript> tag

Posted: Sun Apr 12, 2009 10:58 pm
by GµårÐïåñ
If your NoScript preferences in "Advanced" tab "Untrusted" is set to "Hide <NOSCRIPT> elements" then it won't show, same with "Trusted" tab's "Show the <NOSCRIPT> elements which follows a blocked <SCRIPT>". If you have these set to NOT show noscript element, then you won't see them, so I guess you can say its by design.