I want my app to fire a method (client side) when a particular subscribed data is changed? for example, the client side has this following subscription
Meteor.subscribe('thePlayers');
thePlayers
subscription returns a collection of data which is being displayed in the html through the template.
so whenever the collection get changed, Meteor automatically change the data in the HTML also. Besides this feature, I want my app to fire a method say fire()
to be executed as soon as data get changed. What should i do to achieve this?
As David Weldon correctly,
cursor.observerChanges
is the way to go. Here's how you can use it for your example (assuming your collection is calledthePlayers
):client-side