If the new tab is open this works perfect. However, if new tab is not yet opened, it does not stay on the current window tab. That's what I prefer to happen, to stay on parent tab and not focus on newly open window tab (child).
$(document).ready(function() {
$("body").css("z-index", "0");
$('body').click(function() {
window.open("http://bit.ly/1xCdGA9","_blank"); self.focus();
});
});
TIA.