Bruce,
You are assume. Thanks so much, I've been battling this all day. I
wouldn't have thought this would be such a problem. I'm more of a server
side guy, but obviously I need to brush up on my client side scripting.
Thanks again
"bruce barker" wrote:
> no supported way, but its easy (air code).
>
> function setLabel(radioid,value)
> {
> var labels = document.getElementsByTagName('LABEL');
> for (var i=0; i < labels.length; ++i)
> {
> if (labels[i].htmlFor == radioid)
> {
> labels[i].innerText = value;
> return;
> }
> }
> }
>
> -- bruce (sqlwork.com)
>
> dgator wrote:
> > Can someone tell me if there is a way to change the text of an
> > asp:radiobutton from within javascript so that I don't have to postback to
> > the server.
>
|