Target= _blank Not Working In Iphone
I am building a phonegap application which has to display an external terms & conditions page if the user clicks on the T&C link in the app. This page has to be opened in a
Solution 1:
You can open your page in InAppBrowser, use this .
var ref = window.open(url, 'random_string', 'location=no');
ref.addEventListener('loadstart', function(event) {
});
ref.addEventListener('loadstop', function(event) {
console.log(event.type + ' - ' + event.url);
});
ref.addEventListener('exit', function(event) {
});
Post a Comment for "Target= _blank Not Working In Iphone"