Jquery click not raised in a scroll view

Hi,

I’m usign IONIC without Angular.

I have a div managed by a ionic.views.Scroll that is placed inside a structure managed by ionic.controllers.SideMenuController

The problem is that any jquery event bound via $(“selector”).click() is not raised at all on the phone.
The handler is never called. In the browser instead it work like a charm.

The only workaround i’ve found is to use ionic.on(“tap”…) but this make my code very dirty as it become complex when you have attach and detach events to multiple objects.
in jquery (and backbone) a simple $(element).off() resolve all.

any idea?