I have the following code:
$('#Element1').event(function() {
$('#Element2').event({ prop: $('#Element1').someMethod() });
});
Now the Element 2 responds on an Event of Element1 and when Element 1 property changes. How to do it vice-versa in an optimum manner.