popup IE & Mozilla

popup IE & Mozilla - HTML/CSS - Programmation

Marsh Posté le 13-02-2005 à 13:35:40    

J'ai un probleme avec une fonction javascript pour ouvrir un popup:
 

Code :
  1. function popup(nom_de_la_page,x,y)
  2. {
  3. window.open("membres/photos/popup.php?fichier="+nom_de_la_page,"Identifiant","toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=no, copyhistory=no, width="+x+", height="+y+", left=300, top=50" );
  4. }


 
Cette fonction marche sur FireFox mais pas sur Internet Explorer...
 
Merci de votre aide

Reply

Marsh Posté le 13-02-2005 à 13:35:40   

Reply

Marsh Posté le 13-02-2005 à 13:38:35    

c'est chiant les popup :/


---------------
Nos estans firs di nosse pitite patreye...
Reply

Marsh Posté le 14-02-2005 à 14:50:53    

oui je sais mais c'est la seule solution

Reply

Marsh Posté le 14-02-2005 à 14:52:53    

Tu dois avoir un problème dans tes guillemets. Décompose le tout :

Code :
  1. nomFichier = "membres/photos/popup.php?fichier="+nom_de_la_page;
  2. nomPopUp = "Identifiant";
  3. optionsPopUp = (...)
  4. window.open(nomFichier, nomPopUp, optionsPopUp);


Reply

Sujets relatifs:

Leave a Replay

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