Почему бы не сделать как-то так:
$('#wrapper').click(function (event) {
var link = $('#ref')[0],
target = link.getAttribute('target'),
href = link.getAttribute('href');
if( target == '_blank'){
window.open(href);
} else {
window.location = href;
}
});