Skip to content

onClearAll

Callback that executes when fields are cleared.

Usage

javascript
var options = {
      onClearAll: function(formData) {
          alert('all fields removed');
        },
    };
$(container).formBuilder(options);

See it in Action