views:

224

answers:

1

Hello,

a simple question here

Is there a way to change the text "click here"

<a id="a_tbnotesverbergen" href="#nothing">click here</a>

in this link using prototype?

+2  A: 
$("a_tbnotesverbergen").update("New Text")

This should do.

wtaniguchi