|
Title: appending multiple functions to events Post by: devnull on May 10, 2013, 03:33:53 AM How can I append multiple functions to an event, such that they are appended to and don't overwrite the previous function.
Code: cbo.combobox('options').onSelect = function(){ functionA();};Title: Re: appending multiple functions to events Post by: stworthy on May 10, 2013, 07:35:15 AM Here is the simple solution to achieve this functionality.
Code: function CB(){Code: cbo.combobox('options').onSelect = cb.onSelect; |