js button onclick preventdefault code example
Example 1: js preventdefault
function(event) {
event.preventDefault();
}
Example 2: prevent from going to a function html click
$("#clickable a").click(function(e) {
// Do something
e.stopPropagation();
});