bootstrap modal appearing after a 10 second delay code example
Example: showing bootstrap modal after a delay
setTimeout(function() {
$('#myModal').modal();
}, 2000);
setTimeout(function() {
$('#myModal').modal();
}, 2000);