I like to use the Cordova plugin and InAppBrowser with the remote webapp, when I open my application it loads an external webapp, like this <content src="http://mywebapp.domain.com" /> , but with this method I donβt have access to any either plugins.
So, I also tried with jquery:
config.xml
<content src="index.html" /> <access origin="*" />
index.html:
<div id="remoteframe"></div> $('#remoteframe"').load('http://mywebapp.domain.com');
With this, I have access to the cord and all plugins, but the root inside http://mywebapp.domain.com no longer works (no css, no js, ββno route ..) and the method looks very dirty.
Is there any way to do this?
source share