Papzord
Papzord

Reputation: 408

change html text from link with prototype

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

Answers (1)

wtaniguchi
wtaniguchi

Reputation: 1324

$("a_tbnotesverbergen").update("New Text")

This should do.

Upvotes: 3

Related Questions