I'd like to attach the event listener on my div tag so I know if the user tap the element. How can I achieve this with or without a jQuery.
<div class="chart" id="circle_chart">test</div>
<script>
document.addEventListener('touchstart', function(event) {
alert(event.touches.length);
}, false);
</script>