MutationObserverInit
interface MutationObserverInit {
attributeFilter?: string[];
attributeOldValue?: boolean;
attributes?: boolean;
characterData?: boolean;
characterDataOldValue?: boolean;
childList?: boolean;
subtree?: boolean;
}§Properties
§
attributeFilter?: string[]
[src]Set to a list of attribute local names (without namespace) if not all attribute mutations need to be observed and attributes is true or omitted.
§
attributeOldValue?: boolean
[src]Set to true if attributes is true or omitted and target's attribute value before the mutation needs to be recorded.
§
attributes?: boolean
[src]Set to true if mutations to target's attributes are to be observed. Can be omitted if attributeOldValue or attributeFilter is specified.
§
characterData?: boolean
[src]Set to true if mutations to target's data are to be observed. Can be omitted if characterDataOldValue is specified.