问题 I have a page that I need to reset the viewport scale (the pinch zoom) on command, setting it back to the initial zoomed out state. Looks like the old tried and true method of rewriting the meta viewport: const viewportmeta = document.querySelector('meta[name="viewport"]'); viewport.attr('content', "initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"); doesn't seem to have any effect anymore on ios10 (page remains zoomed in). Is there any way around this? Update .attr is a jquery method,