$.confirmize

jQuery plugin that displays confirmation box for an action link or when
submitting a form

Requires jQuery and bootbox. Works best with bootstrap.

Usage

Basic usage is:

$('.your-class').confirmize({
    title: 'Title',
    message: 'Proceed?'
});

The settings object and all params are optional.

Parameters

All parameters can be specified by using (in this order):

title

Default: '<i class="fa fa-exclamation-triangle text-danger"></i> Confirm Action'

Can be also specified in the title attribute on the element.

message

Default: 'Are you sure?'

href

This parameter must be specified unless you're using a form.
Can be also specified in the href attribute on the element.