Skip to content

Instantly share code, notes, and snippets.

@fahdi
Created July 31, 2022 14:56
Show Gist options
  • Save fahdi/7040bffb17c803d7a97d1948897e64cd to your computer and use it in GitHub Desktop.
Save fahdi/7040bffb17c803d7a97d1948897e64cd to your computer and use it in GitHub Desktop.
Change Me on Click
<html>
<head>
</head>
<body>
<div id="message">I love you!</div>
<button type="button" onclick="myResponse()">Respond</button>
</body>
</html>
function myResponse() {
document.getElementById("message").innerHTML = "It's not you, it's me!";
}
#message {
padding: 20px 0 20px 0;
font-size: 200%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment