I'm creating dynamic elements using jquery and try to bind listener for elements. by binding listener using
$('#div11').on('click',$('#textbox31'),function(e){showPopupImage(e);});
$('#div11').on('click',$('#textbox32'),function(e){alert('hi');});
function,it adds listener to descendents even though i specify the particular field to bind.
pls,suggest me the good way to handle my situation.