Jump to content
Fórum Script Brasil
  • 0

Confirmação


Dark_Eyes

Question

13 answers to this question

Recommended Posts

  • 0

Se o cara apertar cancelar, a mensagem vai ficar aparecendo, sem que a janela abra...Só vai abrir quando ele clicar em OK ... Aqui vai um exemplo de window.open:

window.open("http://www.ibest.com.br/votos.php?site=osite","voto","width=800 height=600 scrolling=yes status=no");

width = largura

height = altura

scrolling = barra de rolagem

status = barra de status

wink.gif

Link to comment
Share on other sites

  • 0

O Script Ficou Assim:

<script language="JScript">

<!--

function vota()

{

if(confirm("Oferecemos à você Emuladores, Roms, Jogos Completos, Detonados, Dicas de Jogos Gratuitamente em alta qualidade... Não Custa Votar..."))

{

window.open("http://www.lkonline.net/top/votar.cgi?id=90","Vote no Arena do Jogo"," width=700 height=500 scrolling=yes status=no");

}

else

{

vota()

}

}

vota();

-->

</script>

Daí quando eu clico em OK a janela não abre... faça o teste... O Script está correto...???

Falow!

Link to comment
Share on other sites

  • 0

Po cara...não tenho certeza, mas acho que o nome da janela não pode ter espaços...

Ficaria assim:

<script language="JScript">

<!--

function vota()

{

if(confirm("Oferecemos à você Emuladores, Roms, Jogos Completos, Detonados, Dicas de Jogos Gratuitamente em alta qualidade... Não Custa Votar..."))

{

window.open("http://www.lkonline.net/top/votar.cgi?id=90","Vote"," width=700 height=500 scrolling=yes status=no left=0 top=0");

}

else

{

vota()

}

}

vota();

-->

</script>

Link to comment
Share on other sites

  • 0

só uma coisa, se colocar top e left = 0 ele fica no canto superior esquerdo da tela...............

você vai ter q criar duas variáveis.....

<script language="JScript">

<!--

var x = screen.width/2

var y = screen.height/2

function vota()

{

if(confirm("Oferecemos à você Emuladores, Roms, Jogos Completos, Detonados, Dicas de Jogos Gratuitamente em alta qualidade... Não Custa Votar..."))

{

window.open("http://www.lkonline.net/top/votar.cgi?id=90","Vote"," width="+x+" height="+y+" scrolling=yes status=no left=0 top=0");

}

else

{

vota()

}

}

vota();

-->

</script>

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...