on "manifestcontentavailable" event
Even native apps have something like a preload when it comes to launch them ... and guess what happens during that time? Nothing that different from synchronizing content or looking for an update, isn't it? Same Could Be For Mobile Web Apps If you need your manifest to be loaded, in order to provide best UX ever, you might need a mechanism to be sure that everything that has to be there ... oh well, is simply there! AppCache VS Binary Well, one handy thing about the Application Cache Manifest for Web Apps is that you might update only a single part of your software. As example, if you have external libraries you might decide to serve them a part, as external or independent content from the rest of the app ... and rather than download again the whole thing, the user will update only that dependency ... I mean, this is cool but rarely used due common build processes where a single changed comma of a single file will require the whole app file update, you know what I mean? My "ma...