Skip to content

Instantly share code, notes, and snippets.

@momenbasel
Last active September 17, 2018 04:07
Show Gist options
  • Select an option

  • Save momenbasel/4d57de6f0cccd34ccf73e3de5bff4162 to your computer and use it in GitHub Desktop.

Select an option

Save momenbasel/4d57de6f0cccd34ccf73e3de5bff4162 to your computer and use it in GitHub Desktop.
a demo to demonstrate callback hell
<!DOCTYPE html>
<html>
<body>
<p id="clickme" onclick="clicked()"> Click me I\'m sexy </p>
<script>
// JS Code jere
function clicked() {
document.getElementById("clickme").innerHTML = "YOU CLICKED ME!";
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment