Created
March 22, 2017 19:11
-
-
Save fpigeonjr/24248651a29f65ea6e6aa170c1b19fd9 to your computer and use it in GitHub Desktop.
moving elements
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 id="source"> | |
<!-- Source content here --> | |
</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
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.0/css/bulma.min.css"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<!-- Destination Content --> | |
<div class="container content"> | |
<div class="app"></div> | |
</div> | |
<script> | |
$(function() { | |
// Source Content | |
var content = $("#source").contents() | |
$(".app").replaceWith(content) | |
$("#source").remove() | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment