How do I alert a success message when cache.manifest has download all the files in a html5 app? (Bascially success alert on complete cache download)!
Thanks
|
How do I alert a success message when cache.manifest has download all the files in a html5 app? (Bascially success alert on complete cache download)! Thanks |
||||
|
|
You can bind to various events in the You will also have to make sure that any cache update is reloaded correctly for the user. Refer to the following article that covers Application Cache basics, its events and how to handle the updates in a programmatic way. Some other articles that you should refer to while dealing with AppCache are: |
|||
|
|
|
Well thanks to the very well thought article from Garden Gnome http://gardengnomesoftware.com/wiki/Cache_Manifest_File I found the answer. All you have to do it create a div which will display the status of cache by adding this to your page:
and just right after this div add the following java-script:
status of the cache will be displayed in the DIV. |
|||
|
|