Search code examples
javascripttwitter-bootstrapscrollbootbox

ScrollTop bootbox modal on fadeIn


I use bootbox.js to make modal but when the modal fadeIn and the content is too long, the scrollbar goes at the level of the bottom button. I need the scrollbar stay on top when modal appear

enter image description here


Solution

  • I've solved adding .off("shown.bs.modal"); after the bootbox.dialog.

    bootbox.dialog({ ... }).off("shown.bs.modal");