Question : Help required in creating dynamic images in javascript

I have the followng code in one of my aspx page, say b.aspx, i call this page from another page a.aspx, now when a a button is clicked in the client side i transfer the control values to a HTML  table in the parent...i need to create also an image (for editing the newly created row)...for that i use the following code....

all are working but, the problem iam having is that the onclick event is not getting attached to the image control, so that javascript for edit does not fire,,,,i have removed my function and have given and alert('hi') instaed of my EDIT code...even this HI does not display ...please let me know what went wrong...
Code Snippet:
1:
2:
3:
4:
5:
var imgDelete = parent.document.createElement('IMG');
                imgDelete.src='../images/edit.gif';
                imgDelete.onclick = function(){alert('hi')};
                imgDelete.disabled=false;
                tblMv.rows[rowID].cells[1].appendChild(imgDelete);
Open in New Window Select All

Answer : Help required in creating dynamic images in javascript

i fixed the bug but setting the InnerHTML instead of append child like this
1:
tblMv.rows[rowID].cells[1].innerHTML = "" 
Open in New Window Select All
Random Solutions  
 
programming4us programming4us