up vote 5 down vote favorite
1
share [g+] share [fb]

jQuery: how to change tag name?

For example:

<tr>
    $1
</tr>

I need

<div>
    $1
</div>

Yes, I can

  1. Create DOM element <div>
  2. Copy tr content to div
  3. Remove tr from dom

But can I make it directly?

PS:

    $(tr).get(0).tagName = "div"; 

results in DOMException.

link|improve this question

67% accept rate
2  
In this special case, it would not make sense to just "rename" it because div won't be a valid element where tr is located. – Felix Kling Aug 8 '10 at 20:11
feedback

4 Answers

up vote 5 down vote accepted

You can replace any HTML markup by using jQuery's .replaceWith() method.

example: http://jsfiddle.net/JHmaV/

Ref.: .replaceWith

link|improve this answer
This will work, but you won't carry over the dom element's properties (styles, events) etc. I don't think there exists a good way to really achieve a full node name change. – Jason Apr 6 '11 at 20:06
feedback

No, it is not possible according to W3C specification: "tagName of type DOMString, readonly"

http://www.w3.org/TR/DOM-Level-2-Core/core.html

link|improve this answer
feedback

To preserve the internal content of the tag you can use the accessor .html() in conjunction with .replaceWith()

forked example: http://jsfiddle.net/WVb2Q/1/

link|improve this answer
how about saving all attributes of any element? – JohnJ May 16 '11 at 6:56
just what i was searching for +1. Attributes are not included with other solutions, until now, this one is a better one – Nacho May 26 '11 at 13:06
feedback

To replace the internal contents of multiple tags, each with their own original content, you have to use .replaceWith() and .html() differently:

http://jsfiddle.net/kcrca/VYxxG/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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