noberto Posted May 15, 2004 Report Share Posted May 15, 2004 como faço para abrir uma janela pop-up em uma posição XY da tela?pode ser acrescentado algum parâmetro no window.open para isso?qual?obrigado desde já Quote Link to comment Share on other sites More sharing options...
0 rodfraga Posted May 16, 2004 Report Share Posted May 16, 2004 pode sim cara.veja: <script language="JavaScript"> Function janelanova(theURL,winName,features) { window.open(theURL,winName,features); } </script> O features serve para voce botar o tamanho, se tem barra de rolagem, etc. Ai lá no link voce bota assim: <a href="página1.html" onclick="janelanova('endereço.html','Titulo da página','width=200,height=300,top=10,left=40')">Link 1</a>Espeto ter te ajudadoAbraçosRodrigo Quote Link to comment Share on other sites More sharing options...
0 John Doe Posted May 16, 2004 Report Share Posted May 16, 2004 Só lembrando um negócio...O código do Aragorn13 tá ok...Mas ele esqueceu de especificar... <a href="página1.html" onclick="janelanova('endereço.html','Titulo da página','width=200,height=300,[b]top[/b]=10,[b]left[/b]=40')">Link 1</a> top - distancia do topoleft - distancia da esquerda Abraços Quote Link to comment Share on other sites More sharing options...
0 rodfraga Posted May 16, 2004 Report Share Posted May 16, 2004 ah sim...esqueci... valeu por lembrar John.abraçosRodrigo Quote Link to comment Share on other sites More sharing options...
0 noberto Posted May 16, 2004 Author Report Share Posted May 16, 2004 valeu rodrigo, valeu john... Quote Link to comment Share on other sites More sharing options...
Question
noberto
como faço para abrir uma janela pop-up em uma posição XY da tela?
pode ser acrescentado algum parâmetro no window.open para isso?
qual?
obrigado desde já
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.