Looking to add some functionality when users double click on a div to pop up a box. I already have the pop-up functionality which works with inline onClick(). But I would like to change this to double click.
I have tried the following which will work if invoked after an element is added.
$(".dz-preview").dblclick(function() {
console.log("inside dbl");
renameFile(this);
});
But I cant seem to figure out how to get it to work on dynamically generated elemenets.