I want to create inline SVG graphics using Javascript.
However, it seems like createElementNS function applies some normalization and transforms all tags
the answer given is too extensive and not really useful to me and i find it to much troublesome or to simply say bogus. If i were you, i would simple have on element in html with tag say:
and when i have to create element or add information i would simply do:
document.getElementById('myElement').innerHTML = 'your stuff here';
I Hope that was helpful.