4

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

$("#sampleButton").click(function(){
    bootbox.alert("hey");
});
Jack Bonneman
  • 1,821
  • 18
  • 24
mitesh
  • 916
  • 9
  • 13

2 Answers2

3

I solve this problem by using jquery-impromptu

mitesh
  • 916
  • 9
  • 13
0

Try to use

$("#sampleButton").click(function(e){ 
  e.preventDefault();
  bootbox.alert("hey"); 
});
user3141004
  • 115
  • 4