append, prepend
append
and prepend
allows you to define a block of arbitrary html to appear in the editor. This html is not editable and serves to provide a more accurate representation of what their form will look like in relation to items they cannot edit.
Usage
var options = {
prepend: '<h1>Profile for Miss Marple.</h1>', // DOM Object, Array of Dom Objects/Strings or String
append: '<h2>All information is confidential.</h2>'
};
$(container).formBuilder(options);