Skip to content

Instantly share code, notes, and snippets.

@thomasorten
Created January 28, 2018 14:35
Show Gist options
  • Save thomasorten/d179c29f30044295e9b23d55fe02d82e to your computer and use it in GitHub Desktop.
Save thomasorten/d179c29f30044295e9b23d55fe02d82e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.3.1.js"></script>
</head>
<body>
<h1>En flott liste</h1>
<ul id="liste">
<li>Melk</li>
</ul>
<input type="text" id="felt1">
<input type="submit" id="knapp">
<script>
$("#knapp").click(function() {
var verdi = $("#felt1").val();
var listeElement = "<li>" + verdi + "</li>";
$("#liste").append(listeElement);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment