I can easily create new element with jQuery:
var $e = $("<element>");
The result after appending will be:
<element></element>
But I really need:
<element/>
How to reach the desirable result? For example, how to create:
<path id="p2" d="M0,0"/>
I tried $("<path/>"), $("<path />"), but it not works. I believe, that:
$("#parent").html("<path id='p2'/>");
var $p = $("#p2");
$p.attr({'d': "M0,0"});
...
will work, but this is the nightmare for me
UPDATE 1:
Even $("#parent").html("<group><path id='p2'/></group>"); is not working! It produces:
<... id="parent"><group><path id='p2'></path></group></...>
UPDATE 2:
Even $parent[0].innerHTML = '<group><path id="p1"/></groups>'; produces:
<... id="parent"><group><path id='p2'></path></group></...>

xhtmlas a tag, but I get your point. – rockerest Feb 18 at 4:38document.createElement, so I would think it would generate the correct markup depending on the specific tag, wouldn't it? Just a thought. Have you tried with different elements (<input> vs. <div>) and noticed a difference? – nbrooks Feb 18 at 4:45