I wonder why when I click on my "a" nothing happens. Here is the concerned part of my HTML doc:
<div class="itemu">
  <div class="played">
    <span>3D</span><br>
    <a id="1q1uSDi71Tl::::ypYqQXw" class="boutonlien" title="supprimer HOLA" href=""></a>
  </div>
  <div style="clear:both;"> </div>
</div>
and here my jQuery
$("a.boutonlien").click(function() {
    alert('ok');        
});
alert just for testing but nothing happens.
 
    