Documentation

onAfterExpand

fires after an item expands in the accordion

void onAfterExpand(string| number id){ ... };

Parameters

idstring| numberID of an item that has just been expanded

Example

some.attachEvent("onAfterExpand", function(id){
    //code
});

See also

Back to top