attentio | bonjour,
sur un site, certain ne peuvent pas ouvrir une popup a cause de leur anti popup voici le lien
Code :
- <input type="button" value=" Medias " onClick="javascript:window.open('repertoire.php', 'blank','resizable=1,scrollbars=1, toolbar=yes,width=700,height=600')" class="filet_bleu">
|
pourtant il arrivent à ouvrir :
Code :
- <script>
- function fiche_artiste(page) {
- var width=700;
- var height=550;
- x = (640 - width)/2, y = (480 - height)/2;
- if (screen) {
- y = (screen.availHeight - height)/2;
- x = (screen.availWidth - width)/2;
- }
- if (screen.availWidth > 1800) {
- x = ((screen.availWidth/2) - width)/2;
- }
- window.open(page,'CGV','width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',scrollbars=1,left='+x);
- }
- </script>
- <a href="#" onclick="javascript:fiche_artiste('lien.php);">lien</a>
|
que dois-je fairealors pour que leur antipopup accepte ce lien merci de votre aide |