The latest version of the App Cloud SDK (v1.11) introduces a new type of event for monitoring whether the user is online or offline. It's simple to use: $(bc).on("connectionstatechange", function(evt, data) { if (data.online) { // do something } else { // do something else } }); Now you can take appropriate action at the moment a user's connection goes in or out. For example, say you want to show a status indicator: Read More →





