Question

I use button as well as div but in all cases bootbox.js scroll my page to top.

$("#sampleButton").click(function(){
    bootbox.alert("hey");
});
Was it helpful?

Solution

I solve this problem by using jquery-impromptu

OTHER TIPS

Try to use

$("#sampleButton").click(function(e){ 
  e.preventDefault();
  bootbox.alert("hey"); 
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top