Window.open avec IE - HTML/CSS - Programmation
Marsh Posté le 30-10-2008 à 11:30:01
ReplyMarsh Posté le 30-10-2008 à 20:19:38
Bonjour,
J'ai effectivement trouvé la réponse sur http://webtips.dan.info/graceful.html, il suffisait d'ajouter RETURN FALSE :
<a href=' ' onclick=window.open('popup.php?param=photo1_gf_sc.jpg', '_blank','top=300, left=450, width=590, height=480, toolbar=no, status=no'); return false">
<img src=photo1_gf_sc.jpg with="140" height="107"></a>
Marsh Posté le 30-10-2008 à 00:15:19
Bonjour à tous,
j'ouvre un POPUP avec ce code :
<a href=' ' onclick = "window.open('popup.php?param=photo1_gf_sc.jpg', '_blank','top=300, left=450, width=590, height=480, toolbar=no, status=no')">
<img src=photo1_gf_sc.jpg with="140" height="107"></a>
ou :
<a href=' ' onclick = "window.open('popup.php?param=photo2_gf_sc.jpg', 'popup','top=300, left=450, width=590, height=480, toolbar=no, status=no')">
<img src=photo2_gf_sc.jpg with="140" height="107"></a>
(pendant le développement, la vignette et l'image agrandies sont les mêmes (économie d'effort !)).
Sous IE 6.0 comme FF 3.0.3, la fenêtre POPUP s'ouvre bien, mais si sous FF, la page qui a ouvert le POPUP reste en arrière plan, sous IE la page qui a précédé celle qui a ouvert le POPUP la remplace ?
Merci de vos suggestions.