eligius
    Preparing search index...

    Interface IMutationObserverControllerMetadata

    Metadata configuration for MutationObserverController

    Configures what types of DOM mutations to observe and how to observe them.

    interface IMutationObserverControllerMetadata {
        attributeFilter?: string[];
        attributeOldValue?: boolean;
        characterDataOldValue?: boolean;
        observeAttributes?: boolean;
        observeCharacterData?: boolean;
        observeChildList?: boolean;
        observeSubtree?: boolean;
        selectedElement: JQuery;
    }
    Index

    Properties

    attributeFilter?: string[]

    Array of specific attribute local names to observe If omitted, all attribute changes are observed when observeAttributes is true

    attributeOldValue?: boolean

    Record the previous value of attributes that change Requires observeAttributes to be true

    false
    
    characterDataOldValue?: boolean

    Record the previous value of text content that changes Requires observeCharacterData to be true

    false
    
    observeAttributes?: boolean

    Observe changes to element attributes

    true
    
    observeCharacterData?: boolean

    Observe changes to text content (character data)

    true
    
    observeChildList?: boolean

    Observe additions and removals of child nodes

    true
    
    observeSubtree?: boolean

    Observe mutations in the entire subtree (all descendants)

    false
    
    selectedElement: JQuery

    jQuery-wrapped DOM element to observe for mutations