I am quite new to javascript so probably this is not a very smart question - I'd be super thankful for your help
I have the following code:
$tp_baraja.find("li").click(function(){
document.location=tp_questions[tp_pointer].selflink;
return false;
});
Whereby the document link is provided from a database via php if that makes any sense.
Currently this opens in the same window but I want to force it to open in a new tab. How would I do that?