Hello
I have some elements like <a class='link'>click</a> which are created after clicking on another div ...
Is there any chance to make jQuery works for <a class='link'>click</a> ?
For now I'm forced to use <a onclick='func()' class='link'>click</a> ... and it's not possible to make something like alert($(this).html()) (which must pop-up the text "click").
Thanks