Close Twitter Bootbox after x seconds

bootbox, javascript, jquery, twitter-bootstrap

Solution

This code will close the open bootbox automatically after 10 seconds.

window.setTimeout(function(){
    bootbox.hideAll();
}, 10000); // 10 seconds expressed in milliseconds

See the documentation here

Problem

Is it possible to close a twitter bootbox after 10 seconds?! i open it like this: ``` bootbox.confirm("{{$steps[0]}}","accept","decline" ,function(result) { if (result) { } }); ```

Original source