My .popup divs are draggable, thanks to this jquery function :
$(function()
{
$('.popup').draggable({
drag: function(event, ui) {}
});
});
BUT... Once the page is loaded, I add a .popup div in another div's innerHTML. This div is not draggable. Do you know why ?
Thank you for your help, Stefan