Dynamic Controls

wxdqz

New Member
I add cells to my table by using - var sCells = document.all("Matrix").rows[countRow].insertCell();

and then assign ids to the cells like
sCells = Blah;

Is there a way I can attach events to it which in turn calls a function, wherein I need to pass this cell.

Like Onclick---> somefunction(sCell)
 
Back
Top