/ Gists / Jquery - replace tag with another
On gists

Jquery - replace tag with another

jQuery Helpers-Filters-Plugins
Jquery - replace tag with another

replace-tag-by-another.js Raw #

$('li').replaceWith(function(){
  return $("<div />").append($(this).contents());
});