$(document).ready( function()  {

    $("a.exter").click(function(e) {
        e.preventDefault();
        odkaz = $(this).attr("href");
        window.open(odkaz, "_blank")
    });

});
