Bonjour,

J'ai du mal à afficher un petit bouton appeler en javascript.
Il y a une condition; si on est à la page http://www.test.fr/annonce/ann_type.php?type=1 alors on affiche la page demandée (c'est pour rafraichir la page et faire défiler des photos dans un bloc).

functions_html.php

<head>

<link href="style/style.css" type="text/css" rel="stylesheet" />

<script type="text/javascript">
function Chargement() {
location.reload();
}
    var monurl = document.URL;
  
          if( monurl == 'http://www.test.fr/annonce/ann_type.php?type=1' ){
                  document.write("<div class='flecheslider'>onClick='Chargement()'</div>");

}
</script>
</head>


style.css

.flecheslider{
   float: left;
    position: absolute;
     margin-left: 955px;
      margin-top: 90px; 
       width: 40px;
	height: 40px;
	background-image: url("../images/fleche-slider.png") no-repeat;
	display: block;
}


J'ai aussi essayé ce bout de code mais rien ne marche.

functions_html.php
var monurl = document.URL;
    
                 if( monurl == 'http://www.test.fr/annonce/ann_type.php?type=1' ){
                     document.write("<div class='flecheslider'>onClick=\"window.location.href='http://www.test.fr/annonce/ann_type.php?type=1'\"</div>");
    
}