I've got this DOM:
<li>
<img class="ui-selectee" src="../img/thumbs/80x80_1280_wallpaper.jpg" style=""/>
<input type="hidden" value="3"/>
<a class="btnImgDel" title="Eliminar" href="javascript:void(0)">Eliminar</a>
<a class="btnImgRen" title="Renombrar" href="javascript:void(0)">Renombrar</a>
<a class="btnImgZoom" title="Ampliar" href="javascript:void(0)">+</a>
</li>
Links do not cover all the image, but only some pixels.
As you may notice, the img is selectable (jQuery UI) and it's got three links as siblings. These links should run a function when clicked:
$('.btnImgDel').live('click',function(){
$('#dialogDeleteImg').dialog('open');
console.log('click');
});
However, when I click over a link nothing happens. Links have greater z-index and are visible.
Any way to make this work or any clue about what may be going on?