Skip to content

Instantly share code, notes, and snippets.

@alex-boom
Last active October 6, 2016 14:47
Show Gist options
  • Save alex-boom/fb1c2425fa61206c3f1d0246d7aa894c to your computer and use it in GitHub Desktop.
Save alex-boom/fb1c2425fa61206c3f1d0246d7aa894c to your computer and use it in GitHub Desktop.
replaceTag
//replace tag
var countBox = $(".tour h2").text();
var tag = '';
tag += '<span>';
tag += countBox;
tag += '<span>';
$(".tour h2").replaceWith(tag);
//replace tag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment