Created
December 13, 2017 10:09
-
-
Save siddharthkrish/9db335f9d045ab1871bde79ea828bcb0 to your computer and use it in GitHub Desktop.
simple web page instrumentation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function notify( event ) { | |
$.post('https://requestb.in/1g52ujz1', | |
{ "button_name": $(this).attr('name'), | |
"position": $(this).attr('data-position') }); | |
} | |
$(function(){ | |
$( "button" ).on( "click", notify ); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | |
<link rel="stylesheet" href="style/common.css"> | |
</head> | |
<body> | |
<p> | |
<button name="product#hsbc" data-position="1">HSBC</button><br/> | |
<button name="product#citi" data-position="2">CITI</button><br/> | |
<button name="product#dbs" data-position="3">DBS</button><br/> | |
</p> | |
</body> | |
<script src="js/common.js"></script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment