Why does bootboxjs scroll my page up?

I use the button as well as the div, but in all cases bootbox.js scrolls my page up.

$("#sampleButton").click(function(){
    bootbox.alert("hey");
});
+4
source share
2 answers

I solve this problem using jquery-impromptu

+3
source

Try using

$("#sampleButton").click(function(e){ 
  e.preventDefault();
  bootbox.alert("hey"); 
});
0
source

Source: https://habr.com/ru/post/1531983/


All Articles