I'm using twitter's bootstrap CSS framework (which is fantastic). For some messages to users I am displaying them using the alerts Javascript JS and CSS.

For those interested, it can be found here: http://twitter.github.com/bootstrap/javascript.html#alerts

My issue is this; after I've displayed an alert to a user I'd like it to just go away after some time interval. Based on twitter's docs and the code I've looked through it looks like this is not baked in:

  • My first question is a request for confirmation that this is indeed NOT baked into Bootstrap
  • Secondly, how can I achieve this behavior?
link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Calling window.setTimeout(function, delay) will allow you to accomplish this. Here's an example that will automatically close the alert 2 seconds (or 2000 milliseconds) after it is displayed.

$(".alert-message").alert();
window.setTimeout(function() { $(".alert-message").alert('close'); }, 2000); Set Timeout

If you want to wrap it in a nifty function you could do this.

function createAutoClosingAlert(selector, delay) {
   var alert = $(selector).alert();
   window.setTimeout(function() { alert.alert('close') }, delay);
}

Then you could use it like so...

createAutoClosingAlert(".alert-message", 2000);

I am certain there are more elegant ways to accomplish this.

link|improve this answer
Hey jesse thank you! the setTimeout works and i'll select it as a valid solution, but it appears the behavior should in fact be baked in as TK Kocheran stated (and logged). – SizzlePants Oct 4 '11 at 5:22
I looked at the twitter bootstrap code and didn't see any support for auto-closing alerts. – jessegavin Oct 4 '11 at 5:30
Yes -- im waiting on TK's response because from his message here it sounds like the auto-close functionality should be there and is not -- but the bug report on github makes no reference to that. – SizzlePants Oct 4 '11 at 5:31
Yeah they're not claiming to be able to auto close alerts, only to be able t programmatically close them with the provided jQuery plugin. ie $('#myAlert').alert('close') doesn't work as advertised. – TK Kocheran Oct 4 '11 at 7:47
feedback

It seems that it's broken. I've reported the issue with a test-case here: https://github.com/twitter/bootstrap/issues/366

You can view my code here: http://jsdo.it/rfkrocktk/bRrV

link|improve this answer
are you saying that you believe that Twitter bootstrap supports alerts that will automatically close after a given amount of seconds? Or are you saying that the close functionality just doesn't work at all? – jessegavin Oct 4 '11 at 5:29
TK Kocheran thank you for reporting an issue. I've reread your bug's description a couple times and i'm confused if you are reporting that the close method (and X ) are missing OR if there should be a timed delay before the alert automatically dismisses itself? thanks – SizzlePants Oct 4 '11 at 5:30
The bug is that you can't close the alert with the jQuery plugin which is supposed to be able to do just that. – TK Kocheran Oct 4 '11 at 7:42
feedback

I could not get it to work with alert.('close') either.

However I am using this and it works a treat! The alert will fade away after 5 seconds, and once gone, the content below it will slide up to its natural position.

window.setTimeout(function() {
    $(".alert-message").fadeTo(500, 0).slideUp(500, function(){
        $(this).remove(); 
    });
}, 5000);
link|improve this answer
feedback

I implemented a Javascript library that has what you ask as a feature: https://gist.github.com/1569896

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.