Are there any pitfalls/ dangers to altering jquery's event object?
For example:
$('#myselector').trigger({type: 'click', myvariable: 'mycontent' })
The additional attribute 'myvariable' gets stored in the event object and I'm able to use it when handling the click event. However, this isn't explicitly outlined in the documentation anywhere - is this considered bad practice?