This post is a part 40 of Intel XDK Complete Tutorial post series.
With just few lines of code you can hide status bar in Intel XDK
//event is fired when all Intel XDK apis are loaded.
document.addEventListener("intel.xdk.device.ready",function(){
//this function actually hides the status bar
intel.xdk.device.hideStatusBar();
},false);
document.addEventListener("intel.xdk.device.ready",function(){
//this function actually hides the status bar
intel.xdk.device.hideStatusBar();
},false);
Leave a Reply