noscript

Check if Javascript is Enabled (Serverside) with Rails

How would you check if javascript is enabled in Rails? So that I could do something like this in the views: <div> <% if javascript_enabled? %> <p>Javascript Enabled!</p> <%- else -%> <p>No Javascript</p> <%- end -%> </div> ...

How to force <noscript> to be inline & inherit CSS styles?

Using <noscript> inside of another tag seems to cause it to take on its own style (that is, none), and forces the text inside to take its own line (even if display:inline is set with CSS). Is there any way to avoid this, or a workaround to use instead? Here is what I mean: http://www.webdevout.net/test?01I <!DOCTYPE html PUBLIC "-//W3C...

<noscript> stuff </noscript> doesn't work on google chrome

I wanted to display a message on the top of my site when the javascript is disabled (just like on SO), but on google chrome is not working ...

Payment gateways and XSS

Hi all, I'm working on a website which takes payment from a customer. I'm using Kohana 2.3.4 and have created a library to handle the payment gateway I use (www.eway.com.au). Basically I'm just using their sample code, copied into it's own class. Anyway, the code works fine and I can make payments, etc. The issue I have is when the pay...

noscript tag appears even if javascript is turned on in IE8

ghost noscript tag more info here I am facing exactly this issue, how shall I handle this for Internet Explorer browsers :-( ? Explanation: I have included the following noscript tag in my application's layout <noscript style="background:#ffcc00;font-size:200%;font-family:verdana;text-align:center;text-transform:uppercase;font-weight:b...

Meta page refresh not working for php page?

i am trying to redirect users without javascript enabled to our help page (help.php), specifically the part that talks about enabling javascript (help.php#nojavascript). however, my meta refresh is not working! it keeps on refreshing the same page! i tried redirecting to a different page with a .html extension instead, and that works, s...

Display a "No Javascript" div, but not to google / facebook share service...

Hi All, I would like to show a div near the top of a site to suggest to visitors that do not have javascript enabled that they should enable their javascript. I thought I had found a good method by using the noscript tag. Unfortunately I found that this solution was less than ideal because of services like Google's indexer and Facebook...

What is the best way to provide a default CSS style, that gets overridden by jQuery UI, for No Script scenarios?

For example: I have a pager << 1 2 3 4 5 6 7 8 >> in my page where every navigation element is a normal Html link. For modern browsers with JS enabled, I would like to beautify them with jQuery's .button(). But I would like to have something for NoScript scenario. Obviously I should add some CSS styling for the links, but how do I know t...

Is the <noscript> tag outmoded?

A lot of what I continue to read about graceful degradation applies to browsers that don't use JavaScript. But my own experience shows that it's no longer reasonable to expect a normal experience on the Internet without JS and CSS support. How much energy is it responsible to devote to degradation these days? ...

Problem in No script tag

Im placing no script tag on my master page that if a user dont have javascript enabled or its browsers doesnt support javascript it redirect to a specific view. im using this code <noscript> <% Response.Redirect("../UserLogin/Error"); %> </noscript> but the problem is its redirecting me everytime i open the page although my j...

<script> or <noscript>?

hey guys, i just wonder what's the better solution. I have an iFrame with a google map on my website. the iframe has an id="map". I wonder now what's the better solution if I don't want the map to show if javascript is turned off. should I have a <noscript> <style type="text/css"> #map {display:none) </style> </noscript> or can I w...

How do I ask/hint to Google not to index something on a page?

I have a web site that mostly displays images that contain text. It is heavy with JavaScript. In a noscript tag we have the usual "You must have JavaScript enabled" message followed by the text extracted from the image. My problem is that Google indexes the "You must have JavaScript enabled" message. So when you get a hit on my site, thi...