I am using the bootstrap modal in one of my project. I\'m using the timer functions for automatically showing the bootstrap modal.
If the user doesn\'t close the bo
Function definitions
function show_modal(){ $('#myModal').modal('show'); } function hide_modal(){ $('#myModal').modal('hide'); }
Loading
$(window).load(function(){ $('#myModal').modal('show'); window.setTimeout(hide_modal, 60000); });