In the example below what's the simplest addContent function that will put some content into the child div?
<div>
<a href="javascript:addContent();">My Link</a>
<div/>
</div>
Clicking the link should result in:
<div>
<a href="javascript:addContent();">My Link</a>
<div>Added Content</div>
</div>