I know this function:
document.addEventListener(\'touchstart\', function(event) { alert(event.touches.length); }, false);
But is it possibl
The other way round if you are not using addEventListener, probably a alternative to get control over ID.
$(document).ready(function () { $('#container1').on("contextmenu", function (e) { e.preventDefault(); }); });