Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
ERR_NAME_NOT_RESOLVED on ONSENUI VS2015
-
I have an application, Cordova Tools (Visual Studio) with OnsenUi framework. It’s working fine, using the code below. Note: I’m Using Inappbrowser.
<ons-icon icon="fa fa-globe" fixed-width="true" onclick="window.open('http://www.mywebsite.com.br', '_blank', 'location=yes')"></ons-icon>
But when i try to use my social profiles (Pinterest,instagram …) with : https:// I’m receiving this error:
ERR_NAME_NOT_RESOLVED
webpage not available
So if you have the same problem , my solution : remove Location = yes
<ons-icon icon="fa fa-globe" fixed-width="true" onclick="window.open('https://www.myinstagram.com', '_blank')"></ons-icon>
So, now like me you can be happy, adding your social profiles inside your application.
-
Thanks for sharing it @Leonardo-Augusto ! This will be helpful for somebody else :)