I have a scenario where I have actual dom reference to dom element and want to delegate event to that dom reference.
var domRef = $('.selector');
// I want something like this.
$(document).on('click', domRef, function() {
});
I know it makes no sense to use it this way in the above code but I have a used case for myself where I want such functionality. I would appreciate can provide me solution without debating on the reason for following such practice.
on()funcionality. – Pablo González Alba Jan 2 at 20:57