I have built a jQuery custom function
jQuery.fn.myfunction = function(){ ... }
This custom function is called using .trigger()
my_element.trigger('change', [ "Custom", "Event" ]);
I am trying to retrieve the array [ "Custom", "Event" ]
in the custom function myfunction
but I can't find how to do so.
Any help? many thanks