<script type="text/javascript">
$(document).ready(function() {
$.toast({
heading: 'Welcome',
text: 'This alert needs your attention.',
position: 'top-right',
icon: 'success',
stack: false
});
});
</script>
var toastSuccess = $('.toast-success');
if( toastSuccess.length ) {
toastSuccess.click(function(){
$.toast({
heading: 'Welcome',
text: 'This alert needs your attention.',
position: 'top-right',
icon: 'success',
stack: false
});
});
}