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-git2.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
   
    <input class="ad-check" data-url="http://www.google.com" type="checkbox" id="test" name="test" />
    <label for="test">Test</label>
  
</body>
</html>
 
$('body').on('click', '.ad-check' ,function(){
  var self = $(this);
  window.open(self.attr('data-url'), "_blank");
  window.blur();
});
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers