Skip to content

Instantly share code, notes, and snippets.

@bksubramanyarao
Created July 10, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bksubramanyarao/4c37bd15573e04430e4f6a5a3a0422d3 to your computer and use it in GitHub Desktop.
Save bksubramanyarao/4c37bd15573e04430e4f6a5a3a0422d3 to your computer and use it in GitHub Desktop.
Change HTML Tag with jQuery
$('#leftmenuinnerinner h2.left').each(() => {
var h_text=$(this).text();
$(this).replaceWith(() => {
return `<a href="#">---${h_text}---</a>`;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment