eachOtherList

iterates through other lists of Kanban except the calling one

void eachOtherList(function code);
codefunctionthe code that will be executed for each list of Kanban

Example

$$("list1").eachOtherList(function(list){
    list.unselect();
});

Back to top