Hi, it seems there is no way to show Header and Footer when external address is opened. You can use childBrowser.
Instead of
codeif (navigator.app !== undefined) {
navigator.app.loadUrl(Tiggzi('mobilelink1_17').attr('href'), { openExternal:true } );
} else {
window.open(Tiggzi('mobilelink1_17').attr('href'), '_blank');
}
event.preventDefault();
return false;/code
use codeif (window.plugins !== undefined) {
window.plugins.childBrowser.showWebPage(Tiggzi('mobilelink1_17').attr('href'), {showNavigationBar: false, showAddress: false, showLocationBar: false});
} else {
window.open(Tiggzi('mobilelink1_17').attr('href'), '_blank');
}
event.preventDefault();
return false;/code