Skip to content

Instantly share code, notes, and snippets.

@mellowsh
Created January 31, 2013 17:52
Show Gist options
  • Save mellowsh/4684782 to your computer and use it in GitHub Desktop.
Save mellowsh/4684782 to your computer and use it in GitHub Desktop.
Little function to echo out a dismiss-able alert utilizing Twitter Bootstrap's style.
function alert($text,$type) {
echo '<p class="alert alert-' . $type . '" fade in>
<button type="button" class="close" data-dismiss="alert">&times;</button>
' . $text . '
</p>'."\r\n";
}
alert('Request completed successfully!', 'success');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment