0

In the jsRender documentation there is a method $.observable(object).setProperty() but how do I remove a property from the object observably?

Floris
  • 1,082
  • 10
  • 26

1 Answers1

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