Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a alot of functionality implemented through javascript if at any stage the javascript is disabled he should be redirected to another page. mentioning him to enable the javascript and then proceed. and this functionality should be cross browser compatable Regard,

share|improve this question
possible duplicate-ish of stackoverflow.com/questions/121203/… – olly_uk Dec 2 '11 at 11:07
I don't know if that is possible. I think you must have JavaScript enabled to redirect in the client, and you can only know that there is no JS engine available in the client... – elias Dec 2 '11 at 11:10
Appropriate use of progressive enhancement would make this approach, and the requirement for another page, unnecessary. – RobG Dec 2 '11 at 11:10

6 Answers

up vote 7 down vote accepted

Use <noscript> tag to check whether JavaScript is enabled or not.<meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/"> will redirect it to the specified url.Here in this example it will redirect to the google.

Here is an example.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>How To Detect If User Javascript Is Enabled</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .style1 {
    color: #FF0000;
    font-weight: bold;
    }
    -->
    </style>
    </head>
    <body>
    <p>The Purpose of this script is to show if you have javascript enabled in your browser.</p>
    <p class="style1">
    <script type="text/javascript">
    document.write('Javascript is enabled');
    </script>
    <noscript>
    Javascript is disabled.
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com/"> 
     </noscript>
    </p>
  </p>
    </body>
    </html>
share|improve this answer
can i redirect it? – Shah Dec 2 '11 at 11:19
Yes you can redirect. I have tested it and it works.If your javascript is disabled it redirects to google.com. you can specify url to redirect. – Rohan Patil Dec 2 '11 at 11:25
Thanks Rohan Patil – Shah Dec 3 '11 at 5:37

Do a http redirect from a noscript block. Like:

<noscript>
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/index.html"> 
</noscript>
share|improve this answer

Use the noscript element with a meta redirect.

share|improve this answer

I think the noscript Tag will be helpful in this case. This will execute when javascript is disable. So in this you can have a meta redirect useful

share|improve this answer

You could try this, this will write the message that the javascript is not enabled and refreshes in 5 seconds

<noscript>
Javascript is not enabled in your browser, you'll be redirected to another page.
    <meta HTTP-EQUIV="REFRESH" content="5; url=http://www.mysite.com/nojavascript.html"> 
</noscript>
share|improve this answer

Try This

<script type="text/javascript">

document.write("<button type='button' onclick='somefunction()' >Some Text</button>"); 

</script>

<noscript> 

<?php echo "<a href='redirectfile.php'>Link Name</a>"; ?> 

</noscript>
share|improve this answer
A couple of issues with your solution. The question has ASP.NET tag, so it doesn't use PHP. You don't need PHP to echo the link.. you can just put it there. You don't need the script block at all.. So essentially, your answer boils down to just the noscript tag. That's all on top of answering a question from 2011. – sachleen Jun 30 '12 at 8:57
ya.. thats right php block is not at all required here – Zia Jul 1 '12 at 11:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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