Why isn't this code working? How can I make lightswitch = ON or OFF, then test whether it's ON or OFF later on? Can I do this without dealing with changing Classes or ID's?

$(document).ready(function(){
    $('p').click(function(){
         var lightswitch = ON;

         if (lightswitch == ON) {
            alert('LIGHTSWITCH IS ON.')
                } else {
                alert('OFF.')
                }

          })
})
link|improve this question

1  
Is ON some sort of variable you've defined? – Alex Jan 29 '11 at 9:22
feedback

1 Answer

up vote 5 down vote accepted

There is probably no variable called ON. You could use a boolean value:

$(document).ready(function() {
    $('p').click(function() {
        var lightswitch = true;
        if (lightswitch) {
            alert('LIGHTSWITCH IS ON.')
        } else {
            alert('OFF.')
        }
    });
});

or a string value:

$(document).ready(function() {
    $('p').click(function() {
        var lightswitch = 'ON';
        if (lightswitch == 'ON') {
            alert('LIGHTSWITCH IS ON.')
        } else {
            alert('OFF.')
        }
    });
});

Obviously setting a local variable to a hardocoded value followed immediately by an if statement testing the value is not very useful. You could use a global variable which will be set to different values:

var lightswitch = true;
$(document).ready(function() {
    $('p').click(function() {
        if (lightswitch) {
            alert('LIGHTSWITCH IS ON.')
        } else {
            alert('OFF.')
        }
    });
});

then you could set lightswitch = false; on some other part of your code.

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.