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
Richard
|
a simple question here Is there a way to change the text "click here"
in this link Richard |
||||
|
|
|
You have to use the jquery's text() function. What it does is:
For example:
With your markup you have to do:
and it will result in
|
|||||
|
|
The method you are looking for is jQuery's .text() and you can used it in the following fashion:
|
||||
|
|
OR
|
||||
|
|
|
From W3 Schools HTML DOM Changes: If you look at the 3rd example it shows how you can change the text in your link, "click here". Example:
JS:
|
||||
|
|