onSectionRemove

fires when a section is deleted from Multitext

void onSectionRemove(id id,number index);
ididthe id of the section to remove
indexnumberthe position a section is removed from

Example

$$("multitext").attachEvent("onSectionRemove", function("$multitext",1){
    // your code here
});

See also
Back to top