Page 1 of 1

window.open Can't Be Closed

Posted: Sun May 18, 2014 8:29 pm
by Doug Black

I use
codewindow.open(localStorage.getItem('streamURL'), "_self");/code

to open a link. However, once you open it, you can't close it. How can I make it close?


window.open Can't Be Closed

Posted: Sun May 18, 2014 9:19 pm
by Illya Stepanov

Hi Doug,

Try with this parameters:
precode
window.open(...., '_blank', 'location=yes');
/code/pre

-- for additional info you can check other options for different platforms:
:: http://cordova.apache.org/docs/en/3.3...


window.open Can't Be Closed

Posted: Mon May 19, 2014 2:00 pm
by Doug Black

Perfect, thank you!