eligius
    Preparing search index...

    Interface ISetElementContentOperationData

    interface ISetElementContentOperationData {
        insertionType: "append" | "prepend" | "overwrite";
        selectedElement: JQuery;
        template: string | Node;
    }
    Index

    Properties

    insertionType: "append" | "prepend" | "overwrite"

    overwite = the contents of the selected element are replaced by the given template

    append = the new content will be inserted after the current content

    prepend = the new content will be inserted before the current content

    selectedElement: JQuery
    template: string | Node