notify
notify
Use your existing notifications.
Usage
var options = {
notify: {
error: function(message) {
return console.error(message);
},
success: function(message) {
return console.log(message);
},
warning: function(message) {
return console.warn(message);
}
}
};
$(container).formBuilder(options);