• FRAMEWORK

Alert

We perform the following actions for success, info, warning and error actions.

// Success
$(function () {
    $('#success').click(function () {
        toastr.success("Lorem ipsum dolor sit amet...", "Success");
    });
});

// Info                        
$(function () {
    $('#info').click(function () {
        toastr.info("Lorem ipsum dolor sit amet...", "Info");
    });
});

// Warning                 
$(function () {
    $('#warning').click(function () {
        toastr.warning("Lorem ipsum dolor sit amet...", "Warning");
    });
});

// Error (Custom alert and set time out)            
$(function () {
    $('#error').click(function () {
        toastr.error("Lorem ipsum dolor sit amet...", "Error", {
            "timeOut": "0",
            "extendedTImeout": "0"
        });
    });
});

Alert Message

We perform the following message actions for success, info, warning and error actions.

A simple primary alert message, please check it!

A simple secondary alert message, please check it!

A simple success alert message, please check it!

A simple info alert message, please check it!

A simple warning alert message, please check it!

A simple error alert message, please check it!

Alert Message with Icon

We perform the following message actions for success, info, warning and error actions.

A simple success alert message with icon, please check it!
A simple info alert message with icon, please check it!
A simple warning alert message with icon, please check it!
A simple error alert message with icon, please check it!