window.open + iframe problem (working on the desktop but not working on appery tester on mobile)
hello,
i'm building an android/ios app and i'm trying to open a link in my app using an iframe
(i would like to obtain that a web page will be opened in my app but it should be wrapped between my app header and footer)
a used the code suggested in the following post:
https://c.getsatisfaction.com/apperyi...
and
https://c.getsatisfaction.com/apperyi...
so i added an html component "html_7" and in the html i added
code<iframe name="iframeName" width="320" height="480">></iframe>/code
then on a click event of a button a run a custom js:
codevar ref = window.open("https://mobile.sella.it/mobileweb/portal.aspx", "iframeName","toolbar=yes, menubar=yes, location=yes, titlebar=yes");
ref.addEventListener('exit', function() { alert('chiuso'); });/code
when i test the app on my desktop (chrome browser) it seems to work properly (even if neather location nor toolbar etc. are showed)
when i try to test on my mobile (android 4.1.2) and i click on the button i get nothing.
please help me to solve the problem