Debutant : windows.open

Debutant : windows.open - HTML/CSS - Programmation

Marsh Posté le 07-02-2003 à 15:16:19    

Bonjour,  
 
voilà j'aimerais tout simplement faire un popup, j'ai fait quelque chose mais cela ne veux pas marcher.. je désespère.
 
Une idée ?
 
<html><head>
<script language="javascript">
 
function imageG(url)
{
var url;
window.open(url,"boulot", "toolbar=no, location=no, directories=no, status=yes, scrollbars=no, resizable=no, copyhistory=no, width=400, height=400" );
}
 
 
</script>  
 
</head>
<body>
 
 
<a href="#" OnClick="imageG('grandeimage.php3?img=bingo.jpg&alt=bidso&nom=test';)">test de popup</a>
 
</body>
</html>
 

Reply

Marsh Posté le 07-02-2003 à 15:16:19   

Reply

Marsh Posté le 07-02-2003 à 15:35:10    

déjà ton "var url" est louche :o

Reply

Marsh Posté le 07-02-2003 à 19:05:54    

exactement antp.
 
avec var tu vas définir la variable en tant que variable locale et c'est pas ce qui est recherché vu ke tu veux utiliser url comme paramètre d'entrée..
 
je suis pas un as en programmation c peut etre tout faux tout ce que je dis :ange:

Reply

Marsh Posté le 10-02-2003 à 21:43:41    

va voir là
 
Code à copier entre les balises Head et Head =============================================
<SCRIPT LANGUAGE='JAVASCRIPT' TYPE='TEXT/JAVASCRIPT'>
<!--
<!-- UNIVERSURF -->
<!-- http://www.universurf.com -->
var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random" ){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center" ){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random" ) || pos==null){myleft=0;mytop=20} settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=yes,directories=yes,status=,menubar=yes,toolbar=yes,resizable=yes";win=window.open(mypage,myname,settings);
win.focus();}
// -->
</script>
 
 
=============================================
Code à copier entre les balises Body et Body =============================================
 
 
Voici le code que vous pouvez placer sur votre site :  
<a href=http://www.universurf.com target=_blank><img src=http://www.universurf.com/logo_pub/compte/referencement.gif width=88 height=31 border=0 align=absmiddle></a>
site tres utile pour les debutants

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed