The hyperlink click is not firing inside the dynamic div

The hyperlink click is not firing inside the dynamic div

I am trying to add the hyperlink button inside the dynamic div, here is my code:

 $('#btClickMe').click(function () {


                    var dynamic_div = $("<div1 id= div" + iCnt + ">< a href='#' class='delete'>sudhir</a></div1>").css({
                        border: '1px solid', position: 'absolute', left: '350', top: 110, 
                        width: '25', height: '25', url: '', padding: '2', margin: '50',
                    });

                   
                    $(dynamic_div).append('<input type=text readonly=true style="width:28px;font:arial;background-color:transparent;font-size:11px;margin-top:5px;margin-left:-1px;text-align:center;border:0px;" id=tb' + iCnt + ' value=' + e.options[e.selectedIndex].value + '>');

                    $(dynamic_div).appendTo('#ctl00_BodyContent_divResize').draggable();

                    iCnt = iCnt + 1;

                    document.getElementById('ctl00_BodyContent_HdnDivCount').value = iCnt;
                });

any idea how to fix this, if I move the same code with static data it will work fine.