Skip to content

Instantly share code, notes, and snippets.

@KevinKu
Created June 27, 2015 13:27
Show Gist options
  • Save KevinKu/66841a54df4ef95fa7b5 to your computer and use it in GitHub Desktop.
Save KevinKu/66841a54df4ef95fa7b5 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<script>
function show()
{
alert("hihi");
}
function change()
{
document.getElementById("test").onclick = function(){hello();};
}
function hello()
{
alert("hello");
}
</script>
<a id="test" onclick="show()" > test </a>
<a onclick="change()"> change </a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment