If I develop a web app in phonegap, can the same web app be made to run in regular desktops/laptops inside a browser?
It will definitely run on desktop, IF you do it in right way.
I do this with many of my apps,But it`s good to wrap your device specific event listeners like:
onDeviceReady: function() {
// Your Code for Device event listner
},false);
And initialize the function
document.addEventListener("deviceready", onDeviceReady, false);