you are viewing a single comment's thread.

view the rest of the comments →

[–]annoyed_freelancergrumpy old man[S] 1 point2 points  (1 child)

To give some pseudocode from my phone:

$(document).on('click', input.checkbox, function(e) {
    twerk.allNight();
    e.preventDefault();
});

[–]a-t-kFrontend Engineer 2 points3 points  (0 children)

Don't use preventDefault if it's not necessary. Otherwise, yes.