Jquery, Javascript click && value

214 Views Asked by At

how do I check inside jquery if a button is clicked and if the variable test has an integer of 1? I have done this so far.

$(".bx-next").click(function() && (test == 1){
    $("#step_1").text("Hello world!");
});
3

There are 3 best solutions below

0
On BEST ANSWER

You're thinking about click wrong. It means "When the button is clicked". It isn't a condition that you are testing for at the time the code runs. It is setting up an event handler to run later.

So you need to rethink your test:

if a button is clicked and if the variable test has an integer of 1?

Should be:

When a button is clicked, if test is 1.

$(".bx-next").click(function() {
    if (test == 1) {
        $("#step_1").text("Hello world!");
    }
});
0
On

You would want to add an additional if statement after the function is called.

$(".bx-next").click(function(){
    if (test == 1){ // Perform test
        $("#step_1").text("Hello world!");
    }
});
0
On

Try:

clicked  = false;
$(".bx-next").click(function(){
    $("#step_1").text("Hello world!");
clicked = true;
});
if(clicked &&  (test == 1)) {
// do code
}