tags:

views:

48

answers:

1

If I have an empty tag:

<tag/>

How can I add text so that I end up with:

<tag>Hello World!</tag>

I can only seem to swap the whole tag with different content or add content before/after it.

+1  A: 

Seems I just needed to use the call:

my_node.inner_html my_content 
Hates_