Created
January 28, 2018 14:35
-
-
Save thomasorten/d179c29f30044295e9b23d55fe02d82e 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://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