Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <a href="http://random.org" onclick='called(event, this,  "clicked")'>Visit site</a>
</body>
</html>
 
window.called = function(event, link, id){
    event.preventDefault();
    event.stopImmediatePropagation();
    var theUrl = "counter.php";
    var xmlHttp = null;
    xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange=function(){
        if (this.readyState != 4)
            return;
        window.location.href = link.href.value;
    };
    xmlHttp.open("GET", theUrl, true);
    xmlHttp.send("id="+id);
    return false;
};
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers