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!");
});
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!");
});
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:
Should be:
When a button is clicked, if test is 1.