Comment empêcher les défauts dans une méthode onclick ? J'ai une méthode dans laquelle je passe également une valeur personnalisée.
<a href="#" onclick="callmymethod(24)">Call</a>
function callmymethod(myVal){
//doing custom things with myVal
//here I want to prevent default
}