Skip to content

Instantly share code, notes, and snippets.

@mgenov
Created November 1, 2016 12:22
Show Gist options
  • Save mgenov/ab61bdc0b452aa4e6169de4bb7f85613 to your computer and use it in GitHub Desktop.
Save mgenov/ab61bdc0b452aa4e6169de4bb7f85613 to your computer and use it in GitHub Desktop.
Test HTML Page
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Title of the document</title>
<script type="text/javascript">
var count = 0;
function handleClick() {
console.log("Count: " + count)
count++;
}
</script>
</head>
<body>
<a href="#" onclick="javascript:handleClick();return false;">Test</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment