How can I disable default mobile browser events like zoom (dblclick, expand) and options (when you hold down your finger on a screen a popup appears with options)?
I tried this:
document.addEventListener('ontouchstart', function(event)
{
event.preventDefault();
}, false);
You can prevent the finger move(scroll the page) like this:
And the zoom you just need to adjust the
viewportlike this: