Skip to content

Instantly share code, notes, and snippets.

@dopeboy
Created February 23, 2017 02:10
Show Gist options
  • Save dopeboy/529129e8c1bbacfec5721a81159d9ba9 to your computer and use it in GitHub Desktop.
Save dopeboy/529129e8c1bbacfec5721a81159d9ba9 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=529129e8c1bbacfec5721a81159d9ba9
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
My name is <span id="name"></span>
</body>
</html>
{"enabledLibraries":["jquery"]}
var myname = prompt("Hey, what is your name?");
$("#name").append(myname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment