SCEditor

SCEditor

An instance of SCEditor. See the SCEditor API page for a full list of methods.

string

A JavaScript string primitive (not String object).

typeof value === 'string' // Will be true

function

A JavaScript function.

typeof value === 'function' // Will be true

boolean

A JS boolean primitive (not a Boolean object).

typeof value === 'boolean' // Will be true

number

A JS number primitive (not a Number object).

typeof value === 'number' // Will be true

int

A JS number primitive (not a Number object) that is an integer (…, -2, -1, 0, 1, 2, …).

typeof value === 'number' // Will be true

array

A JavaScript array. For example:

var empty = [];
var array = ['one', 'two', 'three'];

See the MDN array page for more informatiom.

Node

A DOM node object. For more information see the MDN node page.

HTMLElement

A DOM HTMLElement object. For more information see the MDN element page.

Range

A DOM range object. For more information see the MDN range page.

jQuery

A jQuery object. For more information see the jQuery docs.