Is it possible to detect if the user is accessing through the browser or application using JavaScript?
I\'m developing a hybrid application to several mobile OS thr
what if you try following :
if(window._cordovaNative) { alert("loading cordova"); requirejs(["...path/to/cordova.js"], function () { alert("Finished loading cordova"); }); }