this is a simple question, but one that I have not been able to find an answer to online, or here on stackoverflow. How do I attach another function to a Js event call. This is what I have and should give some context:
$this->Js->get('#all-matches');
$this->Js->event(
'click',
$this->Js->request(
array('action' => 'findMatches', 'all'),
array('async' => true,
'update' => '#matches',
'success' => $this->Js->each('$(#event-matches).addClass("active");'))
I essentially want to change a classname on a div element to 'active' after the ajax call. Seems like this should be a no-brainer but I cant find any documentation on it.
Thanks!