I need to change text inside html tags, using jQuery/javascript. For example, I need to change this:
<a id="id_1" href="www.google.com"> TEST </a>
into this:
<a id="id_1" href="www.google.com"> SUCCESS </a>
This should be done in regular time intervals, through a jQuery function, but that timing part I know how to do - I just don't know how to change this text. Any help is welcome, since this is the first time I am trying to do something like this.
EDIT: Sorry for what seems to be a stupid newbie question everyone. I have tried searching online, but whatever I typed in gave me results such as changing field values, or element attributes. I will choose the first answer, and once again, sorry for the question.