how to bind a callback in capture manner?
in Javascript,we can bind a callback like this:
ele.addEventListener("click",func,true);
the last parameter
true will make the event broadcast in a capture manner.
but when using jquery,how to get the same result?