Jquery: acionar link com nova janela e ignorar bloqueador de pop-up

<script type = “text / javascript”>

var form = $ (“<form> </form>”);
form.attr (
{
id: “newform”,
action: ” https://google.nl “,
method: “GET”,
target: “_blank” // Abrir em nova janela / guia
});

$ (“corpo”). append (formulário);
$ (“# newform”). submit ();
$ (“# newform”). remove ();

</script>