I have the following javascript code:
$(function (){
    $('a.folder').click(function() {
       // code goes here ...
    }
});
And the following html code:
<a class="folder" href="GetFilesAndFolders?rootFolder=Exigences">Etudes de cas</a>
Whenever I click on the link, the javascript code is never reached. I must say that this html code is generated dynamically after the page loaded. Is this the reason? Any workaround?
 
     
     
    