Karmagination supports namespaced events but not custom events.
Binds an event to the element. The event can be namespaced.
<div>Hello!</div>
Karma('div').on('click.mynamespace', function(e, el){ alert($(el).html()); // alerts Hello! when clicked });
Unbinds an event to the elements.
Karma('div').un('click.mynamespace');
Simulates an event on the elements.
Karma('div').fire('click'); // simulates as if div is being clicked