Created
June 15, 2016 22:01
-
-
Save thomas-thackery/3fe9a804e0e7eb932a8848ea72a28bc5 to your computer and use it in GitHub Desktop.
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
<!-- in the header --> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script>window.jQuery || document.write('<script src="scripts/jquery-2.1.1.min.js"><\/script>')</script> | |
<!-- document ready --> | |
<script> | |
$(document).ready(function() { | |
var customHTML = "<h2>Jeg elsker brød</h2>" | |
$(customHTML).insertBefore( "#someID" ); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment