fixthebug2003
Programmer
Hi,
I am building Listboxes using javascript dynamically on a page..something like this
sCell.innerHTML="<select \"style=\"font-family:helvetica;font-size:10px;width:160px\" onchange=\"changeMe(this)\"></select>";
where sCell is a cell of a Table. Now the problem is in the function changeMe which is declared like this:
function changeMe(pObj){
}
I don't get the object. I expect the listbox object should come in pObj..so I can write my code..! Can some one tell me how to accomplish the same..
fixthebug2003
I am building Listboxes using javascript dynamically on a page..something like this
sCell.innerHTML="<select \"style=\"font-family:helvetica;font-size:10px;width:160px\" onchange=\"changeMe(this)\"></select>";
where sCell is a cell of a Table. Now the problem is in the function changeMe which is declared like this:
function changeMe(pObj){
}
I don't get the object. I expect the listbox object should come in pObj..so I can write my code..! Can some one tell me how to accomplish the same..
fixthebug2003