I'm developing a WebApp using HTML5+phoneGap this days.
I just want to know how to handling the callback of applicationCache.onprogress? I want to tell the user how much network resources have been downloaded. first html page displays a percentage.
Is there some HTML5 APIs that can use?
applicationCache.onchecking = function(){
console.log("checking");
}
applicationCache.ondownloading = function(e){
console.log("dowload");
}
applicationCache.onnoupdate = function(){
console.log("noupdate");
}
applicationCache.onprogress = function(e){
console.log("progress");
}
applicationCache.oncached = function(){
console.log("cached");
}
applicationCache.onupdateready = function(){
console.log("updateready");
}
applicationCache.onobsolete = function(){
console.log("obsolete");
}
applicationCache.onerror = function(){
console.log("error");
}