Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Touch action scroller double tap test</title>
</head>
<body onclick="">
  Body has 'touch-action: manipulation'.<br>  Changes color on click.
  <div id=scroller onclick="">
    Scroller doesn't reset touch-action.<br>
    Double tap me, do I zoom?
    <div class=spacer>
  </div>
</body>
</html>
 
document.addEventListener('click', function(e) {
  document.body.classList.toggle('clicked');
});
Output 300px

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

Dismiss x
public
Bin info
rbyerspro
0viewers