Progress extends Element

The API model used to edit Progress.

Methods

remove()

Removes the Element itself.

var progress = editor.getAPIModelById('id');
progress.remove();

replace(html)

Replaces the element itself with the HTML String passed as an argument.

var progress = editor.getAPIModelById('id');
progress.replace('<span>Progress replaced</span>');