Skip to content

Instantly share code, notes, and snippets.

@mapsam
Last active December 21, 2015 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mapsam/6368319 to your computer and use it in GitHub Desktop.
Save mapsam/6368319 to your computer and use it in GitHub Desktop.
jQuery: prepend() and append()
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<style>
</style>
</head>
<body>
<button id="html-button" type="submit" value="HTML Tag Toggle">Add HTML Tags</button>
<div id="content">
<h1>Eagle Trolls</h1>
<p>Durin there’s some good in <a href="#">this world</a>, Mr. Frodo... and it’s worth fighting for vampire black gate supper sollicitudin placerat. Rohan the one ring to rule them all tincidunt donec Variags breakfast vitae vel. Arnor Middle-earth rhoncus am rohirrim the one ring to rule them all aliquam placerat. Even the smallest person can change the course of the future black gate elevensies lectus tincidunt Moria Easterlings Sauron salted pork there’s some good in this world, Mr. Frodo... and it’s worth fighting for semper a. Gondor Gondor giant spiders pharetra bibendum uruk-hai undefined Noldor pharetra am Silmaril nazgul venenatis Morbi. Silmaril Eregion gifts troll tincidunt malesuada nazgul nazgul a vitae nazgul it's the job that's never started as takes longest to finish anteger Morbi. Goblin Sauron nulla vel.</p>
<p>Lindon gifts goblin pellentesque vitae Shelob supper Tolkien Vala fermentum imperdiet. Ent eagles troll elit urna nazgul supper lacinia pharetra Mordor Gollum the world is indeed full of peril and in it there are many dark places. All there is much that is fair. And though in all lands, love is now mingled with grief, it still grows, perhaps, the greater troll nazgul nec viverra. Balrog Easterlings Noldor enim ac it's the job that's never started as takes longest to finish Frodo Baggins Morgomir vampire a tellus. I’m glad to be with you, Samwise Gamgee... here at the end of all things Samwise Gamgee Forodwaith a metus. The world is indeed full of peril and in it there are many dark places. All there is much that is fair. And though in all lands, love is now mingled with grief, it still grows, perhaps, the greater miruvor Frodo Baggins Vala ent quis a Durin Grey Havens it's the job that's never started as takes longest to finish sem metus. Buckleberry ferry Arnor Bagend urna libero hobbit Buckland Gondor sollicitudin sodales Variags werewolf ligula vitae.</p>
<ul>
<li>Waka</li>
<li>flaka</li>
<li>this is my list</li>
</ul>
<p>Gifts breakfast nec metus Cirdan Minas Tirith Gondor mi tempus all's well that ends better witch-king of Angmar ent Rhudaur tincidunt quis. Dinner Numenoreans congue metus it's a dangerous business, Frodo, going out your door salted pork Gondor semper interdum Rivendell Ilúvatar war of wrath et lectus.</p>
</div>
<script>
var tags = false;
$('#html-button').click(function(){
if(tags == false){
addHTML();
tags = true;
$('#html-button').text('Remove HTML Tags');
} else {
removeHTML();
tags = false;
$('#html-button').text('Add HTML Tags');
}
return false;
});
function addHTML() {
$('#content h1').prepend('<span class="html">&lt;h1&gt;</span>').append('<span class="html">&lt;/h1&gt;</span>');
$('#content p').prepend('<span class="html">&lt;p&gt;</span>').append('<span class="html">&lt;/p&gt;</span>');
$('#content a, #content p a').prepend('<span class="html">&lt;a href=""&gt;</span>').append('<span class="html">&lt;/a&gt;</span>');
$('#content ul').prepend('<span class="html">&lt;ul&gt;</span>').append('<span class="html">&lt;/ul&gt;</span>');
$('#content ul li').prepend('<span class="html">&lt;li&gt;</span>').append('<span class="html">&lt;/li&gt;</span>');
}
function removeHTML() {
$('.html').remove();
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment