I'm using Phonegap for my application and I need to display an external link in a InAppBrowser but it looks like the back botton is not working as expecting: if I'm doing
var ref = window.open('www.example.com/a.html' , '_blank', 'location=no')
from from a.html page I clicked a link to www.example.com/b.html next time when I click back, the InAppBrowser is closed but it should go back to a.html.
Do you know how can I enable the 'navigation history' for InAppBrowser?
Thank you.