my html is like this
<td>
<input type="text" class="textinput" id="file_descr_0" name="file_descr[0]" value='' />
<div id="mean" onClick="removeElement('mean');">{L_FileDescr}</div>
</td>
and to remove the div i am using this function
function removeElement(div){
var d2 = document.getElementById(div);
var d1 = d2.parentNode;
d1.removeChild(d2);
}
I wanted to know how I can make this removing element dynamic because there are lot of divs which are to be removed and because of this function i will have to give each one a id.
and also after removing how can i focus the input field.
Thank You.
Best Solution