Reputation: 408
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?
Upvotes: 0
Views: 4513
Reputation: 1324
$("a_tbnotesverbergen").update("New Text")
This should do.
Upvotes: 3