Using Javascript to dynamically create links that trigger popup windows
问题 I've searched high and low, and have not been able to find a solution for what I am trying to do. I am adding dynamic rows, and doing it by element id, using code such as this: var cellRight = row.insertCell(1); var el = document.createElement('input'); el.type = ''; el.name = 'description' + iteration; el.id = 'description' + iteration; el.size = 55; cellRight.appendChild(el); I have one field where I would like to add a text link, and have it open a new sized window. A popup, basically. I