I just found an interesting solution to this issue. I was creating spans which contain information based on the return from a web service. I thought about trying to put a link around the span so that if I clicked on it, the "a" would capture the click.
But I was trying to capture the click with the span... so I thought why not do this when I created the span.
var span = $('<span id="something" data-href="'+url+'" />');
I then bound a click handler to the span which created a link based on the 'data-href' attribute:
span.click(function(e) {
e.stopPropagation();
var href = $(this).attr('data-href');
var link = $('<a href="http://' + href + '" />');
link.attr('target', '_blank');
window.open(link.attr('href'));
});
This successfully allowed me to click on a span and open a new window with a proper url.