well, I noticed that too, but at that time I had trouble connecting to bytes.
I think the best is to drop the return and let the event take over.
I think the best is to drop the return and let the event take over.
Code:
//instead of
if (checkBeforeProcessing())
{
executeCommand();
}
// do
button_yes.addEventListener("click", executeCommand, false);
Comment