Last active
July 10, 2016 12:41
-
-
Save vitorfs/15706e2b84ca865d1f7f534196c224ac to your computer and use it in GitHub Desktop.
jQuery Wrap Function
This file contains 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
<h3>First</h3> | |
<h3>Second</h3> | |
<h3>Third</h3> |
This file contains 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
$("h3").wrap("<div class='wrapper'></div>") |
This file contains 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
<div class='wrapper'> | |
<h3>First</h3> | |
</div> | |
<div class='wrapper'> | |
<h3>Second</h3> | |
</div> | |
<div class='wrapper'> | |
<h3>Third</h3> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment