Last active
May 30, 2020 05:04
-
-
Save wkw/7495913 to your computer and use it in GitHub Desktop.
jQuery Change Element Type
usage: $("span").changeElementType("div")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from Andrew Whitaker and Jazzbo, http://stackoverflow.com/a/15554920/161625 | |
$.fn.changeElementType = function(newType) { | |
var newElements = []; | |
$(this).each(function() { | |
var attrs = {}; | |
$.each(this.attributes, function(idx, attr) { | |
attrs[attr.nodeName] = attr.nodeValue; | |
}); | |
var newElement = $("<" + newType + "/>", attrs).append($(this).contents()); | |
$(this).replaceWith(newElement); | |
newElements.push(newElement); | |
}); | |
return $(newElements); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment