Could you please remind, where have you mentioned the reference to your public app?
Could you please remind, where have you mentioned the reference to your public app?
Hello Yoram,
Could you please give us step-by-step instruction so we can reproduce this issue?
Click the icon on the upper right side (the upper bar)
Click on "Products"
Click on "Acne cleansers"
Click on the link "Acnefree Oil Free Acne Cleanser, 8 Ounce"
The link loads for a second the InAppBrowser but afterwards the InAppBrowser disappear and the website is shown in the app(without a back/done option).
This is the JS code:
var a = $('a[name=html_180_link]');
window.open(a.attr('href'),'_blank', 'location=yes');
The html and JS code are in xacnecleanser page under products..
Yoram,
The fact that you have to click on a normal link, which opens a new page. You should hide this html component, add a button, clicking on which you should call this code:
prevar a = $('a[name=html_180_link]');
window.open(a.attr('href'), '_blank', 'location=yes');/pre
Many thanks . It's working !!!