Is it possible to assign Double click event to A HREF which is dynamically generated , then assign an user function with parameter that will changes for each A HREF. The V.COMMAND DETAILS is an json object.
Current Code
jQuery.each(v.COMMAND_DETAILS, function(i, s) {
html += '<li id="'+s.COMMAND_ID+'_'+s.REQUIRED_STATUS+'_P" class="ui-state-default parent">';
html += '<span class="ui-icon ui-icon-arrowthick-2-n-s">';
html += '</span>';
html += '<input type="checkbox" name="OP"/>';
html += '</span><span><a id="'+s.COMMAND_ID+'" class="cmdlink" href="javascript:void(0)" onClick="WorkFlow.loadCommandDetails('+s.REF_ID+','+s.COMMAND_ID+',\''+s.COMMAND_TYPE+'\',\'P\')">'+s.COMMAND_TYPE + ' - ' + s.DESCRIPTION+'</a>';
});
I need to bind dblclick to a href and also parameter to the functions are unique , do you suggest any alternative and better way of doing it.