Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <a href="#">Click me</a>
</body>
</html>
 
$('a').on('click', function(e){
  var $link = $(e.target);
  e.preventDefault();
  if(!$link.data('lockedAt') || +new Date() - $link.data('lockedAt') > 300) {
    console.log('clicked');
//     doSomething();
  }
  $link.data('lockedAt', +new Date());
});
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers