Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i was wondering if there was some sort of event triggered when javascript is enabled in a browser (ie. in firefox, tools->options->check off enable javascript-> click ok). i want to redirect a user to a page when this happens. any ideas?

Thanks!

EDIT: i've put an iframe into the page but am not getting the alert (after i enable javascript), so the refresh must not be working. what is wrong with this?

    <iframe style="display:none">
        <html>
            <head>
                <title>my iframe</title>

                <meta http-equiv="Refresh" content="5" />

                <script type="text/javascript">
                    window.parent.location.href = 'home.php';
                    alert("HELLO");
                </script>

            </head>
        </html>
    </iframe>
share|improve this question
Why can't you server-side redirect? – meder Jul 13 '10 at 14:17
because i don't know if they have JS enabled server-side – Garrett Jul 13 '10 at 16:28
I'm not sure why you want to do this, but I suspect it's for the purposes of evil. Should you be forcing users to enable JavaScript when they don't want to? – Borealid Jul 13 '10 at 18:19

3 Answers

up vote 3 down vote accepted

You can only detect whether JavaScript is enabled/disabled on page load. There is no event called for it being enabled/disabled after a page has loaded. Only possible solution i can think is to have an invisible iframe in your main page containing a script with a small meta refresh and a check for whether JavaScript is enabled - if it is then redirect the parent(main) page.

so your iframe would include something like this:

jscheck.html

<html>
<head>
<title>my iframe</title>
<meta http-equiv="refresh" content="5">
<script type="text/javascript">
window.parent.location.href = 'js_turned_on.html';
</script>
</head>
<body>
</body>
</html>

checker.html

<html>
<head>
<title>Form Test</title>
</head>
<body>
<iframe src="jscheck.html"></iframe>
</body>
</html>
share|improve this answer
this is good too! i'll have to try this out and see if it works, because it is better than refreshing the entire page rather than an invisible iframe. thanks! – Garrett Jul 13 '10 at 14:38
doesn't work yet. i've updated my post with the deets =) – Garrett Jul 13 '10 at 17:34
1  
@Garrett - the iframe needs to link to an actual file using its src attribute - see example above – seengee Jul 13 '10 at 18:13
thanks a lot! i've never used an iframe before. this is actually amazing! good thinking, seengee! – Garrett Jul 13 '10 at 19:29

not realy a good ide, but i think it would work:

  • set a meta-refresh of 5(?) seconds on your first page and:
  • set a javascript-redirect to your second page (window.location.href='...')

as long as javascript is disabled, the user stays on page1, where every 5 seconds the refresh is triggered... if javascript gets enabled, on the next refresh the js-redirect is done so the user gets to page2.

share|improve this answer
yes but if not the user is stuck on a page which reloads every 5 seconds! – seengee Jul 13 '10 at 14:28
if i understand the question correct, page1 is only a "please enable scripts, dude!"-page, where there is no problem with a 5-second-refresh – oezi Jul 13 '10 at 14:30
maybe yeah, nothing in the question to actually suggest that is the case though. – seengee Jul 13 '10 at 14:34
good idea! maybe instead of 5 seconds i'll do 60 seconds so they have a chance to read and follow the instructions on how to enable javascript. thanks! – Garrett Jul 13 '10 at 14:37
@seengee: but nothing suggests it's a complex page where you can't do so, too, so i expected easy conditions – oezi Jul 13 '10 at 14:40
show 1 more comment

you could have a small timer on your page with a 1 second time out.

share|improve this answer
but how do i know when javascript is enabled? will all <script> tags run automatically? – Garrett Jul 13 '10 at 14:15

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.