Hi Folks,
I have created a text box dynamically using javascript. Now i want to call a javascript function in the OnChange Event Of that Control is there any way to do the same.?? Here is the code what i tried.
el[j] = document.createElement('input');
el[j].type = 'text';
el[j].name='work'+j;
el[j].onChange='lookup(this.value)';
//el[j].class='filed';
el[j].className ="field";
In this I written the Onchange Event but its not effecting please try for the same..