Created
July 10, 2019 15:14
-
-
Save bksubramanyarao/4c37bd15573e04430e4f6a5a3a0422d3 to your computer and use it in GitHub Desktop.
Change HTML Tag with jQuery
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
$('#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