Use an array to send data to custom event handlers

Always send parameters to an event handler inside an array. If you don't and instead send the data without an array around it, you can lose part of your data if data itself is inside an array. This problem happens if you click on 2nd button below (see results in concole). In other words jQuery trigger method sends content of an array as arguments to event handler.