In the jsRender documentation there is a method $.observable(object).setProperty()
but how do I remove a property from the object observably?
Asked
Active
Viewed 125 times
1 Answers
1
There is a removeProperty() method. It is a recent addition to the API, so not yet in the documentation (to be added soon).
$.observable(myObject).removeProperty("propertyName")

BorisMoore
- 8,444
- 1
- 16
- 27
-
Thank you Boris. jsRender is a critical part of all my projects - awesome plugin! – Floris Apr 30 '15 at 11:13