Jump to content
Fórum Script Brasil
  • 0

JavaScript Link "Blank"


alinemendes

Question

Boa noite galera, to com um probleminha, será que alguém pode me dar uma ajudinha? :)

Estou colocando alguns links dentro de uma tag <select> porém os links só abrem "self" teria um outro jeito para abrir "blank"? estou fazendo dessa maneira:

<select name="txt_cidades" size="1" onchange="window.location = this.value;">
<option selected="selected">Outras Cidades</option>
<option value="http://www.curitiba-parana.net/">Curitiba</option>
</select>

Agradeço desde já! :)

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

O que você pode fazer é criar links ocultos com o atributo target="_blank", cada um para um option.

e quando o cara escolher o option, fazer o javascript simular um click nesse link.

// By lucas.exe (Favor manter os cretidos)
function simulaClick(target) {
    try{
        var e = document.createEvent("MouseEvents");
        e.initEvent.apply(e, ["click",true,true]);
        target.dispatchEvent(e);
    }catch(ex){
        target.click();
    }
 };
function abreAba(link){
    if(link.substr(0,4)!="http")return false;
    document.getElementById('links').innerHTML='<'+'a href="'+link+'" target="_blank" style="display:none" id="linkoculto"></a'+'>';
    simulaClick(document.getElementById("linkoculto"));
    document.getElementById('links').innerHTML="";
}
e no HTML:
<select name="txt_cidades" size="1" onchange="abreAba(this.value)">
<option selected="selected">Outras Cidades</option>
<option value="http://www.curitiba-parana.net/">Curitiba</option>
</select>
<div id="links"></div>

Edited by lucas.js
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...