How do we bind a JavaScript object's property to a jQuery option? We want to get notified when the JavaScript object's property changes - we are open to wrap this object into some other model that will trigger notifcation.
For example:
var someObj = {"Name": "Some Name"};
// Some code that will bind the above Name property to a jquery widget's option.
Then when Name changes in the above object, the jQuery widget's option should change.
We are already familiar with KO and "jQuery Data Link plugin". But, in both those, the destination should be a form element not a jQuery widget option.