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.
ONsome sort of variable you've defined? – Alex Jan 29 '11 at 9:22