External URLs don\'t open in the system\'s browser in my PhoneGap IOS application. I\'m using PhoneGap Build 2.7.0.
Javascript:
window
Take reference from this link. I have used this plugin for my IOS application development way back. It works like a charm. Also, it is easy to integrate.
Hope it helps !
Javascript:
myURL = encodeURI(myURL);
window.open(myURL, '_blank', 'location=yes');
Using of encodeURI method fix the above issue