This event is attached to a set of elements:
var elems = $(this).filter(function(){
...
});
How can I trigger a change event on these elements within a change event handler, but ignore the current element?
elems.bind('change input', function(){
// do some stuff...
// then trigger change, but not on "this", to avoid the recursion issue
elems.change();
});
Basically I want ot ignore this from elems, but only in my "manual" change()-call above...