In gridview's column i have a linkbutton and a label under it.
I want to hide/unhide label when linkbutton is clicked. I want to use javascript because i don't want any postbacks.
My java scripts function needs to receive the reference of label which corresponding to the linkbutton that was clicked. (then i will use document.getElementById(inputRef).style.display) to toggle the state.
How do I pass the needed label's reference to the javascript function?
Thanks