Created
December 25, 2012 16:57
-
-
Save taterbase/4374184 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
<!Doctype html> | |
<html> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script> | |
$(function(){ | |
var htmlStr = String($('#js-item-template').html()) | |
$('.js-item').remove(); | |
}); | |
</script> | |
<title> W E B K I T I S T H E N E W I E 6 </title> | |
</head> | |
<body> | |
<div id="js-item-template"> | |
<div class="js-item"> | |
<p>Hey there</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment