Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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></...> 
share|improve this question
2  
Why does it matter if the tag self closes or not? In fact, self closing tags don't even exist in HTML5 – Explosion Pills Feb 18 at 4:36
Can you elaborate on what you are trying to do and why it matters if it is self-closing? And perhaps provide a reproducible case for people to look at. – loganfsmyth Feb 18 at 4:37
@ExplosionPills He did specify xhtml as a tag, but I get your point. – rockerest Feb 18 at 4:38
jQuery makes an internal call to document.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
[Can jquery add closing element tags (markup) only?][1] [1]: stackoverflow.com/questions/14736398/… – Noor Ahmad Feroozi Feb 18 at 4:48
show 4 more comments

1 Answer

$("#parent").html("<path id='p2'/>");

If in the above statement you want the value to display of ` in a tag or attribute with id='parent', it has to be as the following:

$("#parent").html(document.getElementById('p2'));

share|improve this answer
Sorry, but $("#p2") will produce only <div></div> pair. – Ruben Kazumov Feb 18 at 5:05
What does <path> do? – Javier Brooklyn Feb 18 at 5:10
it is a part of the SVG element on a page – Ruben Kazumov Feb 18 at 5:20
Updated the answer – Javier Brooklyn Feb 18 at 5:24
Sorry, not working for me. – Ruben Kazumov Feb 18 at 5:42
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.