How do I make a button open a link in safari and not the in app browser?
Posted: Sun Dec 15, 2013 8:33 pm
How can I make this button
Code: Select all
$('#startScreen_mobilecontainer1 [name="mobilebutton_95"]').die().live({
click: function() {
if (!$(this).attr('disabled')) {
window.open('[url=http://www.website.com]http://www.website.com[/url]', 'NewWindow', 'width=600,height=400,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
}
},
}); Open inside of safari instead of the apps browser?