Is there some javascript or jQuery binding solution (similar to knockout js) that allows you to bind a property of an object (e.g. height/width/x/y, etc.)? With knockoutjs you have to create your own binding variables in the viewModel object, and then bind other things to those variables.
1 Answer
Ben Nadel has written about binding events To non-DOM objects With jQuery, although I'm pretty sure it isn't formally supported.
1 Comment
penguinrob
So he's just essentially using a timer to check for changes to the watched 'thing', which won't really work in my case. Very good read, though, thanks.