I have have a function with attribute changes inside like that:
- function(){
- // I want to bind function to change of map1.a
- var result = map1.attr('a')
- //while this function runs I want to execute some action with map2.b,
- //but don't want its changes to be handled here
- map2.atrr('b', 2)
- return result
- }
function will be called each time when map1.a and map2.b are changing is it possible to prevent binding to chenges map2.b?