Skip to content

Instantly share code, notes, and snippets.

@oclockvn
Created April 10, 2015 14:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oclockvn/77a39ef10de601f1b08f to your computer and use it in GitHub Desktop.
Save oclockvn/77a39ef10de601f1b08f to your computer and use it in GitHub Desktop.
<h2>Index</h2>
<button class='btn btn-info'>Info</button>
<button class='btn btn-success'>Success</button>
<button class='btn btn-warning'>Warning</button>
<button class='btn btn-danger'>Danger</button>
@section scripts {
<script>
$(document).ready(function(){
$('.btn-info').click(function(){
toastr.info('Hello World!','Title' );
});
});
</script>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment