I use phonegap (cordova 2.2)
I have link like this :
twitter
This worked for me on ios
$("a[target='_blank']").on('tap touch click',function(e){ e.stopPropagation(); e.preventDefault(); window.open($(this).attr('href'), "_system"); return false; });