I want to prevent default for some elements, so i add css class .prevent-default to them:
$(".prevent-default").on("click", function (event) {
event.preventDefault();
});
There are too many similar posts on this topic, but I thought this might be useful to someone.