I want to add <"a"> to every word inside an <"h3">. The link should contain the word it has been wrapped around. The web page has many different h3's.
<h3>add links</h3>
<h3>to each word</h3>
The result should look like this:
<h3><a href="add">add</a> <a href="links">links</a></h3>
<h3><a href="to">to</a> <a href="each">each</a> <a href="word">word</a></h3>
I don't know if it's possible (or good) to use PHP else jQuery/JS would be good!