Documentation

removeOption

removes the option of a tabbar

void removeOption(id id );

Parameters

id idID of the option being removed

See also

Example

function del_tab(){
    var tab_id = $$("tabs").getValue();
    $$("tabs").removeOption(tab_id);
}

Back to top