I currently have a responsive website, but I am looking to turn it into an app in order to utilize push notifications. Right now, I am using the inappbrowser
plugin to open my website with this code:
<a href="#" onclick="window.open('http://www.examplewebsite.com', '_self', 'location=no');
return false;">
Open a Browser</a>
However, I would like my app to automatically initialize on the desired website without having to click on the "open a browser" link.
Are there any suggestions on how to achieve this?
Thank you.